This commit is contained in:
2026-03-09 07:20:24 +00:00
parent 045c849697
commit 35e8970944
5 changed files with 31 additions and 14 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
rm -rf /app/node_modules
rm -rf /app/.next
bun install
npm rebuild better-sqlite3
bun twui:add || echo "TWUI Already Added"
bun twui:init || echo "TWUI Already Initialized"
bun twui:update
bunx nsqlite schema -t
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
pm2 start --name turboci-web 'bunx next dev -p 3772'
pm2 start --name turboci-cron 'bun --watch src/cron/index.ts'
pm2 start --name turboci-websocket 'bun --watch src/websocket/index.ts'
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
pm2 start --name turboci-web 'bunx next start -p 3772'
pm2 start --name turboci-cron 'bun src/cron/index.ts'
pm2 start --name turboci-websocket 'bun src/websocket/index.ts'