mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
1507625e57
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
26 lines
414 B
Makefile
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
|