feat: implement deployment workflow and configure PM2 for backend and frontend applications

This commit is contained in:
2025-06-09 13:13:37 -03:00
parent d57afe93a3
commit 89322f6b9e
4 changed files with 90 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
module.exports = {
apps: [{
name: 'portfolio-backend', // A name for your application in PM2
script: 'server.js', // The path to the script PM2 will run
instances: 1, // Run a single instance of the application
autorestart: true, // Automatically restart if the app crashes
watch: false, // Do NOT watch for file changes in production
max_memory_restart: '256M', // Restart if it uses more than 256MB of RAM
env: {
NODE_ENV: 'production', // Set the environment to production
}
}]
};