first commit

This commit is contained in:
vanalmsick 2025-09-27 18:19:06 +01:00
commit e7f627801f
152 changed files with 35352 additions and 0 deletions

12
scripts/launch_react.sh Normal file
View file

@ -0,0 +1,12 @@
#!/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