First commit of group-ironmen-master directory.

This commit is contained in:
2025-10-27 08:25:16 +08:00
commit a8467389ef
26390 changed files with 35396 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/sh
API_FILE_PATH=./src/data/api.js
echo "[entrypoint] Replacing the API URL with the given HOST_URL"
sed -i -e "s#\"/api\"#\"$HOST_URL/api\"#g" $API_FILE_PATH
echo "[entrypoint] Running bundle"
npm run bundle
echo "[entrypoint] Running serve"
exec "$@"