Skip to content

Commit

Permalink
chore: pm2 ecosystem file
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivo committed May 2, 2023
1 parent 976fd15 commit e28b76e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion ecosystem.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
module.exports = {
apps : [{
apps: [
{
name: "flask-api",
script: "poetry",
args: "run flask run",
cwd:"~/visualdynamics2/apps/server",
instances: 2,
autorestart: true,
watch: false,
max_memory_restart: '1G',
},
{
name: 'nextjs-client',
script: 'pnpm',
args:"start",
Expand Down

0 comments on commit e28b76e

Please sign in to comment.