Первый коммит после распаковки архива

This commit is contained in:
2025-08-14 20:14:42 +03:00
commit 5d4e9ba201
354 changed files with 40492 additions and 0 deletions

17
ecosystem.config.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = {
apps: [
{
name: 'threenew-api',
script: 'server.js',
cwd: '/threenew',
env: { NODE_ENV: 'production', PORT: 4000 }
},
{
name: 'threenew-web',
script: 'serve',
cwd: '/threenew',
args: '-s build -l 3000',
env: { NODE_ENV: 'production' }
}
]
}