mirror of
https://github.com/workhardbekind/workout-challenge.git
synced 2026-07-04 01:13:32 -04:00
12 lines
No EOL
221 B
Bash
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 |