Blazing fast and lightweight PostGIS, MBtiles and PMtiles tile server, tile generation, and mbtiles tooling.
Go to file
2018-08-25 20:44:41 +03:00
src chore: cleanup 2018-08-25 20:32:21 +03:00
tests/fixtures test: add table and function source tests 2018-08-25 16:43:31 +03:00
.gitignore refactor: cleanup 2018-08-16 19:58:15 +03:00
.travis.yml ci: cleanup 2018-08-25 20:44:41 +03:00
Cargo.lock chore: update dependencies 2018-08-25 12:50:24 +03:00
Cargo.toml feat: add config support 2018-07-25 15:02:31 +03:00
Dockerfile chore: update dependencies 2018-08-08 15:12:05 +03:00
README.md test: add sources_not_found_test 2018-08-25 15:45:04 +03:00

Martin

Build Status

Martin is a PostGIS Mapbox Vector Tiles server written in Rust using Actix web framework.

Warning: this is experimental

Installation

git clone git@github.com:urbica/martin.git
cd martin
cargo build --release
./target/release/martin

Usage

DATABASE_URL=postgres://postgres:password@localhost:5432/test martin

Environment variables

DATABASE_URL
DATABASE_POOL_SIZE
WORKER_PROCESSES
KEEP_ALIVE

Using with Docker

docker run -d —rm —name martin \
  -p 3000:3000 \
  -e DATABASE_URL=postgres://postgres:password@localhost:5432/test \
  urbica/martin

Development

Install project dependencies and check that the tests run

cargo test
cargo run