wordalle / Makefile
osanseviero's picture
osanseviero HF staff
Update static/index.html
c7d9f1b
raw history blame
No virus
347 Bytes
install-node:
./install-node.sh
build-client:
cd frontend && npm install && npm run build && rm -rf ../static && cp -r build/ ../static/
build-dev:
cd frontend && npm install && NODE_ENV=development npm run build && rm -rf ../static && cp -rv build/ ../static/
run:
FLASK_ENV=development python app.py
build-all: install-node build-client run