Skip to content

Commit a7cbbd3

Browse files
committed
cicd
1 parent d9a2afb commit a7cbbd3

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/workflows/deploy.yml

Whitespace-only changes.

ecosystem.config.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
apps: [
3+
{
4+
name: "backend",
5+
script: "npm",
6+
args: "run start", // Sadece start komutu
7+
cwd: "/root/apps/validatier/backend",
8+
env: {
9+
NODE_ENV: "production",
10+
}
11+
},
12+
{
13+
name: "frontend",
14+
script: "npm",
15+
args: "run start", // Sadece start komutu
16+
cwd: "/root/apps/validatier/frontend",
17+
env: {
18+
NODE_ENV: "production",
19+
}
20+
}
21+
]
22+
};

0 commit comments

Comments
 (0)