-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathecosystem.config.js
45 lines (45 loc) · 1012 Bytes
/
ecosystem.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module.exports = {
apps: [
{
name: 'alexandrie-backend',
cwd: './backend',
script: 'bun main.js',
env: {
NODE_ENV: 'production',
PORT: 8201,
DOMAIN_CLIENT: 'https://alexandrie-hub.fr',
//DOMAIN_DASHBOARD: "https://dashboard.alexandrie-hub.fr",
FRONT_DOMAIN: 'alexandrie-hub.fr',
DB_NAME: 'alexandrie',
},
},
{
name: 'alexandrie-frontend',
cwd: './frontend',
script: 'bun .output/server/index.mjs',
env: {
NODE_ENV: 'production',
PORT: 8200,
},
},
{
name: 'alexandrie-cdn',
cwd: './cdn',
script: './cdn_app',
env: {
NODE_ENV: 'production',
PORT: 8202,
DOMAIN_CLIENT: 'https://alexandrie-hub.fr',
},
},
/*{
name: "alexandrie-dashboard",
cwd: "./dashboard",
script: "bun .output/server/index.mjs",
env: {
NODE_ENV: "production",
PORT: 8202,
},
},*/
],
};