arcast/apps/main/Makefile
William Petit 74268493d6
Some checks reported warnings
arcad/arcast/pipeline/head This commit is unstable
feat: rewrite app system
2024-04-25 15:23:09 +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