Initial commit: ERP system with advance verification fixes
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
module.exports = {
|
||||
apps: [{
|
||||
name: 'company-finance-api',
|
||||
script: 'server-complete.js',
|
||||
instances: 1,
|
||||
autorestart: true,
|
||||
watch: false,
|
||||
max_memory_restart: '1G',
|
||||
env: {
|
||||
NODE_ENV: 'development',
|
||||
PORT: 3000
|
||||
},
|
||||
env_production: {
|
||||
NODE_ENV: 'production',
|
||||
PORT: 5000,
|
||||
DB_HOST: 'localhost',
|
||||
DB_PORT: 5432,
|
||||
DB_NAME: 'company_finance_db',
|
||||
DB_USER: 'finance_user',
|
||||
DB_PASSWORD: 'FinanceDB2026!'
|
||||
}
|
||||
}]
|
||||
};
|
||||
Reference in New Issue
Block a user