This commit is contained in:
2025-11-07 00:53:00 +03:00
parent c9abe6cc55
commit 673d53f126
9 changed files with 1308 additions and 12 deletions

View File

@@ -9,7 +9,8 @@
"client": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node src/server.js",
"start": "node src/production-server.js",
"prod": "npm run build && npm run start",
"setup": "node -e \"import('./src/server.js').then(() => console.log('Database setup completed')).catch(console.error);\"",
"init-db": "node -e \"import('./src/server.js').catch(console.error)\""
},