radames's picture
radames HF staff
db
294c4d8 unverified
raw history blame
No virus
415 Bytes
build-client:
cd frontend && npm install && PUBLIC_DEV_MODE=0 npm run build && rm -rf ../static && cp -r build/ ../static/
build-dev:
cd frontend && npm install && PUBLIC_DEV_MODE=1 npm run build-dev && rm -rf ../static && cp -r build/ ../static/
run-front-dev:
cd frontend && npm install && PUBLIC_DEV_MODE=1 npm run dev
run-dev:
FLASK_ENV=development python app.py
run-prod:
python app.py
build-all: run-prod