mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 05:11:57 +03:00
fa50eeac97
* Use `postgis/postgis` image for the DB * Build frontend image inside the docker * Upgrade all packages except styled-components - that one causes some errors * Add yarn.lock to the repo * Add justfile for simplicity * Bump martin docker image version in a few places
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 }}
|