17 lines
328 B
JavaScript
17 lines
328 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'sitemente',
|
|
script: 'node_modules/.bin/next',
|
|
args: 'dev -- -p 1284',
|
|
cwd: '/root/.openclaw/workspace/SiteMente',
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '1G',
|
|
env: {
|
|
NODE_ENV: 'development',
|
|
PORT: 1284
|
|
}
|
|
}]
|
|
}
|