Spaces:
Runtime error
Runtime error
File size: 393 Bytes
ebf4f9e 8f3df85 ebf4f9e |
1 2 3 4 5 6 7 8 9 10 11 12 |
install-node:
./install-node.sh
build-client:
cd client && npm install && npm run build && pwd && rm -r ../static && cp -r dist/ ../static/
build-client-dev:
cd client && npm install && NODE_ENV=development npm run build && pwd && rm -r ../static/* && cp -r dist/ ../static/
dev:
cd client && npm run dev
run:
FLASK_ENV=development python app.py
build-all: install-node build-client run
|