arcast/apps/main/Makefile
William Petit 9d40230969
Some checks failed
arcad/arcast/pipeline/head There was a failure building this commit
feat: rewrite app system
2024-04-25 15:04:58 +02:00

12 lines
229 B
Makefile

.PHONY: build
build: node_modules
npm run build
node_modules:
npm ci
.env.development.local:
echo "REACT_APP_ARCAST_SERVER_BASE_URL=http://127.0.0.1:45555" > .env.development.local
dev: .env.development.local
npm run start