Blazing fast and lightweight PostGIS, MBtiles and PMtiles tile server, tile generation, and mbtiles tooling.
Go to file
2018-03-28 19:15:00 +03:00
src add tilejson endpoint 2018-03-28 19:15:00 +03:00
.gitignore initial commit 2017-09-30 13:55:44 +03:00
.travis.yml cleanup 2018-03-28 16:31:49 +03:00
Cargo.lock add tilejson endpoint 2018-03-28 19:15:00 +03:00
Cargo.toml add tilejson endpoint 2018-03-28 19:15:00 +03:00
Dockerfile WIP: refactoring 2018-03-26 14:12:43 +03:00
README.md WIP: add coordinator 2018-03-27 14:40:33 +03:00

Martin

Build Status

PostGIS Mapbox Vector Tiles server.

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