forked from mozilla/thimble.mozilla.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecosystem.json
41 lines (41 loc) · 1.36 KB
/
ecosystem.json
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
{
"apps": [
{
"name": "login",
"cwd": "/vagrant/services/login.webmaker.org",
"script": "./app.js",
"merge_logs": true,
"env": {
"NODE_ENV": "development"
}
},
{
"name": "id",
"cwd": "/vagrant/services/id.webmaker.org",
"script": "./web/index.js",
"merge_logs": true,
"env": {
"NODE_ENV": "development",
"POSTGRE_CONNECTION_STRING": "postgres://thimble:thimble@localhost:5432/webmaker_oauth_test",
"HOST": "0.0.0.0"
}
},
{
"name": "publish",
"cwd": "/vagrant/services/publish.webmaker.org",
"script": "./server.js",
"merge_logs": true,
"env": {
"NODE_ENV": "development",
"DATABASE_URL": "postgres://thimble:thimble@localhost:5432/publish",
"S3_EMULATION": true,
"PUBLIC_PROJECT_ENDPOINT": "http://localhost:8001",
"API_HOST": "0.0.0.0",
"PORT": 2015,
"REMIX_SCRIPT": "http://localhost:3500/resources/remix/index.js",
"ID_SERVER_CONNECTION_STRING": "http://localhost:1234",
"FILE_SIZE_LIMIT": 5242880
}
}
]
}