/opt/canhelp
NameSizeModeActions
.git/-0755rm
.github/-0755rm
apps/-0755rm
backups/-0755rm
logs/-0755rm
node_modules/-0755rm
packages/-0755rm
scripts/-0755rm
uploads/-0755rm
.env37350644editdlrm
.env.example19780644editdlrm
.gitignore10710644editdlrm
CLAUDE.md34820644editdlrm
deploy.log5680644editdlrm
DEPLOY.md38710644editdlrm
docker-compose.yml8350644editdlrm
ecosystem.config.js9830644editdlrm
find_missing_keys.js9900644editdlrm
package-lock.json2015120644editdlrm
package.json13950644editdlrm
ru_keys.txt287680644editdlrm
STACK.md37450644editdlrm
turbo.json4620644editdlrm
uk_keys.txt287680644editdlrm
Edit: /opt/canhelp/ecosystem.config.js (983B)
module.exports = { apps: [ { name: 'canhelp-api', cwd: '/opt/canhelp/apps/api', script: '/opt/canhelp/node_modules/.bin/tsx', args: '--env-file=/opt/canhelp/.env src/index.ts', env_file: '/opt/canhelp/.env', env: { NODE_ENV: 'production' }, instances: 1, exec_mode: 'fork', autorestart: true, max_restarts: 10, min_uptime: '10s', max_memory_restart: '400M', error_file: '/opt/canhelp/logs/api-error.log', time: true, }, { name: 'canhelp-web', cwd: '/opt/canhelp/apps/web', script: '/opt/canhelp/node_modules/.bin/next', args: 'start --port 3000', env_file: '/opt/canhelp/.env', env: { NODE_ENV: 'production' }, instances: 1, exec_mode: 'fork', autorestart: true, max_restarts: 10, min_uptime: '10s', max_memory_restart: '600M', error_file: '/opt/canhelp/logs/web-error.log', time: true, }, ], }