d6b16f5e06
Auth BFF (OIDC + prompt=none silent SSO), Mongo data layer, admin CRUD (folders/tags/stories/chapters with TipTap), public reader with tag filtering. Built and verified same-session per design-018-stories.md.
17 lines
292 B
JavaScript
17 lines
292 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'stomping.me',
|
|
script: 'app.js',
|
|
cwd: '/opt/stomping/src',
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
env: {
|
|
NODE_ENV: 'production'
|
|
},
|
|
env_file: '/etc/AGWOL/stomping/.env'
|
|
}
|
|
]
|
|
};
|