This commit is contained in:
user
2026-03-27 20:06:38 +02:00
commit 8c45efc92e
544 changed files with 33060 additions and 0 deletions

14
scripts/prod.start.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
APP_PATH=$1
if [ -z "$APP_PATH" ]; then
echo "Usage: prod.start.sh <app path>"
exit 1
fi
echo "Starting $APP_PATH"
cd $APP_PATH
pnpm run prod