mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 04:41:46 +03:00
29 lines
447 B
Makefile
29 lines
447 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
|
|
|
|
build:
|
|
docker-compose 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
|