workout-challenge/scripts/launch_react.sh
2025-09-27 18:19:06 +01:00

12 lines
No EOL
221 B
Bash

#!/bin/bash
# Working dir is "src-frontend"
if [ $DEBUG == "true" ] || [ $DEBUG == "True" ]; then
echo "Run React Dev-Server";
npm start;
else
echo "Run React Prod-Server";
npm run build;
serve -s build -l 3000;
fi