Blazing fast and lightweight PostGIS, MBtiles and PMtiles tile server, tile generation, and mbtiles tooling.
Go to file
Stepan Kuzmin 9a0e2442f0 cleanup
2018-01-31 12:59:44 +03:00
src cleanup 2018-01-31 12:59:44 +03:00
tests fix tests 2018-01-30 12:36:48 +03:00
.gitignore initial commit 2017-09-30 13:55:44 +03:00
.travis.yml fix tests 2018-01-30 12:36:48 +03:00
Cargo.lock cleanup 2018-01-31 12:59:44 +03:00
Cargo.toml implement lru cache for tiles 2018-01-26 12:45:09 +03:00
Dockerfile add martin_lib crate 2018-01-19 14:06:01 +03:00
README.md rename falcon into martin 2018-01-16 15:55:05 +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

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