Initial commit

This commit is contained in:
Harun CAN
2026-03-23 01:59:17 +03:00
commit 458127ce76
136 changed files with 26214 additions and 0 deletions

21
ecosystem.config.js Normal file
View File

@@ -0,0 +1,21 @@
module.exports = {
apps: [{
name: 'skriptai-backend',
script: 'dist/main.js',
instances: 1,
exec_mode: 'cluster',
env_production: {
NODE_ENV: 'production',
PORT: 3000
}
}, {
name: 'skriptai-frontend',
script: 'npm',
args: 'start -- -p 3001',
cwd: '/home/haruncan/apps/skriptai/frontend',
env: {
NODE_ENV: 'production',
PORT: 3001
}
}]
};