mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 13:21:59 +03:00
22 lines
320 B
Makefile
22 lines
320 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 }}
|