Add plan system: Free(5) Starter(50) Pro(100) Ultra(200) Business(500) Unlimited(99999)

This commit is contained in:
2026-04-13 19:34:00 +02:00
parent b4658b6694
commit 7ba8b47546
7 changed files with 589 additions and 276 deletions
+15
View File
@@ -0,0 +1,15 @@
module.exports = {
apps: [{
name: 'autojobs-frontend',
script: 'npx',
args: 'next start -p 3001',
cwd: '/var/www/autojobs/frontend',
interpreter: 'none',
env: {
NODE_ENV: 'production',
PORT: '3001'
},
autorestart: true,
watch: false
}]
};