Blazing fast and lightweight PostGIS, MBtiles and PMtiles tile server, tile generation, and mbtiles tooling.
Go to file
2017-11-22 17:44:45 +03:00
src use lazy_static for Regex compilation 2017-11-22 17:44:45 +03:00
.gitignore initial commit 2017-09-30 13:55:44 +03:00
.travis.yml add .travis.yml 2017-10-15 14:48:23 +03:00
Cargo.lock use lazy_static for Regex compilation 2017-11-22 17:44:45 +03:00
Cargo.toml use lazy_static for Regex compilation 2017-11-22 17:44:45 +03:00
Dockerfile implement first draft 2017-10-09 14:29:03 +03:00
README.md feat: add MVT handler 2017-11-16 21:14:38 +03:00

Falcon

Build Status

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