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.
|
.PHONY: build-static
|
|
|
|
all: build-static
|
|
|
|
build-static:
|
|
cd ./client && npm run build
|
|
|
|
serve:
|
|
FLASK_APP=invoices/app.py flask run --reload --debugger
|
|
|
|
sync:
|
|
pip-compile dev_requirements.in
|
|
pip-compile requirements.in
|
|
pip-sync requirements.txt dev_requirements.txt
|