23 lines
690 B
JavaScript
23 lines
690 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'nac-presale-test',
|
|
script: '/www/wwwroot/nac-presale-test/dist/index.js',
|
|
cwd: '/www/wwwroot/nac-presale-test',
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '512M',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: '3100',
|
|
DATABASE_URL: 'mysql://nac_presale:NACpresale2026!@127.0.0.1:3306/nac_presale',
|
|
JWT_SECRET: 'NACpresaleJWT2026SecretKey!@#$%^',
|
|
VITE_APP_ID: 'nac-presale',
|
|
OAUTH_SERVER_URL: 'https://api.manus.im',
|
|
OWNER_OPEN_ID: 'nacadmin',
|
|
BUILT_IN_FORGE_API_URL: 'https://api.manus.im',
|
|
BUILT_IN_FORGE_API_KEY: 'nac-presale-forge-key'
|
|
}
|
|
}]
|
|
};
|