forked from setahor/pixel.horse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-template.json
More file actions
40 lines (40 loc) · 945 Bytes
/
config-template.json
File metadata and controls
40 lines (40 loc) · 945 Bytes
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
{
"title": "Your Town",
"discordLink": "<LINK_TO_DISCORD_INVITE>",
"twitterLink": "<LINK_TO_TWITTER>",
"contactEmail": "your_contact_email@example.com",
"contactDiscord": "your_contact_discord#0000",
"port": 8090,
"adminPort": 8091,
"host": "http://localhost:8090/",
"local": "localhost:8090",
"adminLocal": "localhost:8091",
"proxy": false,
"secret": "<some_random_string_here>",
"token": "<some_other_random_string_here>",
"db": "mongodb://<username>:<password>@localhost:27017/<database_name>",
"oauth": {
"google": {
"clientID": "<CLIENT_ID_HERE>",
"clientSecret": "<CLIENT_SECRET_HERE>"
}
},
"assetsPath": "assets-source",
"season": "spring",
"holiday": "none",
"servers": [
{
"id": "test",
"port": 8090,
"path": "/s00/ws",
"local": "localhost:8090",
"name": "Test server",
"season": "spring",
"holiday": "none",
"desc": "Testing server",
"flags": {
"test": true
}
}
]
}