stashing code

This commit is contained in:
user
2025-10-20 17:07:41 +03:00
commit f5b99afc8f
890 changed files with 54823 additions and 0 deletions

13
scripts/migrate.sh Executable file
View File

@@ -0,0 +1,13 @@
echo "🔄 Migrating Primary DB"
cd packages/db
bun run db:migrate
echo "🔄 Migrating Airports DB"
cd ../airportsdb
bun run db:migrate
cd ../../

14
scripts/prod.start.sh Normal 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
bun run prod