We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea5ecf commit 53b973eCopy full SHA for 53b973e
sandbox/scripts/start-bun.sh
@@ -49,7 +49,7 @@ fi
49
50
if [ "$KOSUKE_MODE" = "production" ]; then
51
echo "📦 Running production build..."
52
- bun run build
+ NODE_OPTIONS="--max-old-space-size=1024" bun run build
53
echo "▶️ Starting production server..."
54
exec bun run start
55
else
sandbox/scripts/start-python.sh
@@ -60,7 +60,7 @@ echo "▶️ Starting uvicorn with module: $MAIN_MODULE"
60
# ============================================================
61
62
63
- exec uvicorn $MAIN_MODULE --host 0.0.0.0 --port 8000 --workers 2
+ exec uvicorn $MAIN_MODULE --host 0.0.0.0 --port 8000
64
65
exec uvicorn $MAIN_MODULE --host 0.0.0.0 --port 8000 --reload
66
fi
0 commit comments