radames's picture
first
0e2b5bb unverified
raw history blame
No virus
299 Bytes
build-client:
cd frontend && npm install && npm run build && rm -rf ../static && cp -r build/ ../static/
build-dev:
cd frontend && npm install && npm run build && rm -rf ../static && cp -r build/ ../static/
run-dev:
FLASK_ENV=development python app.py
run-prod:
python app.py
build-all: run-prod