Go to file
2022-02-05 03:00:20 +00:00
data ignore data volume dirs 2022-02-04 14:34:24 +00:00
flask add iso3166 module 2022-02-05 04:42:45 +02:00
lb update subdomains 2022-02-04 15:46:39 +00:00
tileserver add tileserver and load balancer 2022-02-04 01:35:39 +02:00
.env.dev-sample initial setup of dev/prod envs 2022-02-03 23:46:54 +02:00
.env.prod-sample provide mail env vars 2022-02-05 03:00:20 +00:00
.gitignore ignore data volume dirs 2022-02-04 14:34:24 +00:00
docker-compose.dev.yml rename docker-compose.prod 2022-02-04 13:48:46 +00:00
docker-compose.yml fix the osmtile db path 2022-02-04 15:33:49 +00:00
gen-selfsigned-cert.sh temporary disable swagger 2022-02-04 14:25:17 +00:00
issue-certificate.sh add quotest in issue-certificate 2022-02-04 14:06:02 +00:00
LICENSE lic 2022-02-04 01:27:48 +02:00
README.md update subdomains 2022-02-04 15:46:39 +00:00
swagger.yaml example swagger.yaml 2022-02-04 01:54:18 +02:00

Development

Uses the default Flask development server.

  1. Rename .env.dev-sample to .env.dev.

  2. Update the environment variables in the docker-compose.yml and .env.dev files.

    • (M1 chip only) Remove -slim-buster from the Python dependency in services/web/Dockerfile to suppress an issue with installing psycopg2
  3. Build the images and run the containers:

    $ docker-compose -f docker-compose.dev.yml up -d --build
    

    Test it out at http://localhost:5000. The "web" folder is mounted into the container and your code changes apply automatically.

Production

Uses gunicorn + nginx.

  1. Rename .env.prod-sample to .env.prod and .env.prod.db-sample to .env.prod.db. Update the environment variables.

  2. run osmtile with import script

  3. Build the images and run the containers:

    $ docker-compose  up -d --build
    

    Test it out at http://localhost:1337. No mounted folders. To apply changes, the image must be re-built.

More info:

Check out the post.