-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
61 lines (61 loc) · 1.28 KB
/
Copy pathconfig.example.json
File metadata and controls
61 lines (61 loc) · 1.28 KB
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
{
"files": {
"uid": 1000,
"gid": 1000,
"user": "www-data"
},
"databases": [
{
"container_name": "database",
"root_password": "your_development",
"schemas": [
{
"name": "your_league",
"user": {
"name": "your_league",
"password": "your_league"
}
},
{
"name": "your_quests",
"user": {
"name": "your_quests",
"password": "your_quests"
}
}
],
"ports": "3306:3306"
},
{
"root_password": "your_development",
"container_name": "database_1",
"schemas": [
{
"name": "your_status",
"user": {
"name": "your_status",
"password": "your_status"
}
}
],
"ports": "3307:3306"
}
],
"projects": [
{
"domain": "dev.yourleague.co.uk",
"web_root": "public",
"project_root": "/home/josh/programming/YourLeague"
},
{
"domain": "dev.yourquests.co.uk",
"web_root": "public",
"project_root": "/home/josh/programming/YourQuests"
},
{
"domain": "dev.yourstatus.co.uk",
"web_root": "public",
"project_root": "/home/josh/programming/YourStatus"
}
]
}