Blazing fast and lightweight PostGIS, MBtiles and PMtiles tile server, tile generation, and mbtiles tooling.
Go to file
2018-01-30 11:49:10 +03:00
fixtures built-in tilebbox 2018-01-30 11:36:40 +03:00
src fix properties in tile query 2018-01-30 11:49:10 +03:00
tests disable cache in tests 2018-01-26 12:49:21 +03:00
.gitignore initial commit 2017-09-30 13:55:44 +03:00
.travis.yml revert to installing postgresql-9.6-postgis-2.4 using sudo 2018-01-18 14:55:23 +03:00
Cargo.lock implement lru cache for tiles 2018-01-26 12:45:09 +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