martin/demo/justfile
Yuri Astrakhan 1507625e57
Fix demo (#841)
This fixes Demo https://martin.maplibre.org/ site (the new code is
already in production there). Main fixes:

* uses HTTPS again, just like the previous site
* uses nginx
* fixes all the relative paths, maplibre, minor other things
2023-08-26 09:52:43 -04:00

26 lines
414 B
Makefile

#!/usr/bin/env just --justfile
set shell := ["bash", "-c"]
@_default:
just --list --unsorted
clean:
rm -rf frontend/node_modules
up:
docker-compose up
up-build:
docker-compose up --build
up-backend:
docker-compose up db tiles --detach
frontend *ARGS:
docker-compose up frontend {{ ARGS }}
[no-exit-message]
frontend-sh:
docker-compose run --interactive --entrypoint sh frontend