Skip to content

Commit

Permalink
Cofigure el ecosystem.config.js para correr la aplicación con pm2
Browse files Browse the repository at this point in the history
  • Loading branch information
luciocape committed Oct 2, 2024
1 parent 488a67b commit fbca719
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions backend/ecosystem.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
apps : [{
name : "sugar-web-api",
script : "./index.js",
watch : true,
max_memory_restart: '1000M'
}]
}
1 change: 1 addition & 0 deletions frontend/.env.development
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VUE_APP_API_URL="http://localhost:8080"

0 comments on commit fbca719

Please sign in to comment.