Initial commit: working SD Park Pass Map app with deploy scripts and .gitignore

This commit is contained in:
Aram Chia Sarafian
2025-07-13 18:59:51 -07:00
commit ba831bf15a
20 changed files with 9669 additions and 0 deletions

20
ecosystem.config.js Normal file
View File

@ -0,0 +1,20 @@
module.exports = {
apps: [{
name: 'sd-park-pass-locator',
script: 'npm',
args: 'start',
cwd: '/opt/sd-park-pass-locator',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '1G',
env: {
NODE_ENV: 'production',
PORT: 3000
},
error_file: '/var/log/pm2/sd-park-pass-locator-error.log',
out_file: '/var/log/pm2/sd-park-pass-locator-out.log',
log_file: '/var/log/pm2/sd-park-pass-locator-combined.log',
time: true
}]
};