Compare commits

..

7 Commits

Author SHA1 Message Date
Roozbeh Karimi
3b15fc8b17 merged
All checks were successful
Deploy to Production / deploy (push) Successful in 3m7s
2025-10-07 16:18:45 -04:00
Roozbeh Karimi
5251ead1ff merged 2025-10-07 16:17:54 -04:00
Roozbeh Karimi
fc0203c4f0 Merge branch 'develop' 2025-10-07 16:08:38 -04:00
rozbehk
6ba5a7e255
Merge pull request #3 from rozbehk/develop
new set of icons
2025-10-07 16:06:39 -04:00
e4c5432f47 test: trigger CI/CD
All checks were successful
Deploy to Production / deploy (push) Successful in 2m55s
2025-10-06 21:37:46 +00:00
rozbehk
1cffd1f4c9
Merge pull request #2 from rozbehk/development
fix for map first load
2025-10-06 14:44:43 -04:00
rozbehk
77714c101b
Merge pull request #1 from rozbehk/development
Development
2025-10-04 12:36:30 -04:00
2 changed files with 25 additions and 0 deletions

1
backend/index.js Normal file
View File

@ -0,0 +1 @@
// CI/CD test

24
ecosystem.config.js Normal file
View File

@ -0,0 +1,24 @@
module.exports = {
apps: [
{
name: 'aeroecho-backend',
cwd: './backend',
script: 'npm',
args: 'start',
env: {
NODE_ENV: 'production',
PORT: 3001
}
},
{
name: 'aeroecho-frontend',
cwd: './frontend',
script: 'npm',
args: 'start',
env: {
NODE_ENV: 'production',
PORT: 3000
}
}
]
};