Initial commit: AutoJobs MVP - AI job application platform

This commit is contained in:
2026-04-13 18:39:26 +02:00
commit 8d1845c874
16 changed files with 3483 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
module.exports = {
apps: [{
name: 'autojobs-api',
script: '/var/www/autojobs/backend/start_server.py',
interpreter: 'python3',
env: {
DB_PATH: '/var/www/autojobs/autojobs.db'
},
autorestart: true,
watch: false,
max_memory_restart: '500M'
}]
};