You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
180 B
Makefile
11 lines
180 B
Makefile
4 months ago
|
start-dev:
|
||
|
docker compose up -d
|
||
|
.PHONEY: start-dev
|
||
|
|
||
|
stop-dev:
|
||
|
docker compose down
|
||
|
.PHONEY: stop-dev
|
||
|
|
||
|
install-dev-deps:
|
||
|
python3 -m pip install pre-commit
|
||
|
.PHONEY: install-dev-dep
|