forked from mozilla/thimble.mozilla.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecosystem.json
73 lines (73 loc) · 2.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"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": "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
}
},
{
"name": "localize-client",
"script": "scripts/watch-client.js",
"merge_logs": true,
"cwd": "/vagrant",
"env": {
"NODE_ENV": "development"
}
},
{
"name": "thimble",
"script": "app.js",
"watch": true,
"ignore_watch": [
"/vagrant/.git",
"/vagrant/node_modules",
"/vagrant/services/login.webmaker.org",
"/vagrant/services/id.webmaker.org",
"/vagrant/services/publish.webmaker.org",
"/vagrant/client",
"/vagrant/public",
"/vagrant/views"
],
"watch_options": {
"usePolling": true
},
"merge_logs": true,
"cwd": "/vagrant",
"env": {
"NODE_ENV": "development"
}
}
]
}