mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 04:41:46 +03:00
Blazing fast and lightweight PostGIS, MBtiles and PMtiles tile server, tile generation, and mbtiles tooling.
hacktoberfestleafletmapbox-glmapbox-gl-jsmapbox-vector-tilemaplibremaplibre-gl-jsmapsmbtilespmtilespostgispostgresqlruststarred-maplibre-repostarred-repovector-tileswebserver
src | ||
.gitignore | ||
.travis.yml | ||
Cargo.lock | ||
Cargo.toml | ||
Dockerfile | ||
README.md |
Falcon
PostGIS Mapbox Vector Tiles server.
Warning: this is experimental
Installation
git clone git@github.com:stepankuzmin/falcon.git
cd falcon
cargo build --release
./target/release/falcon
Usage
DATABASE_URL=postgres://postgres:password@localhost:5432/test falcon
Using with Docker
docker run -d —rm —name falcon \
-p 3000:3000 \
-e DATABASE_URL=postgres://postgres:password@localhost:5432/test \
stepankuzmin/falcon
Development
Install project dependencies and check that the tests run
cargo test
cargo run