-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.SAMPLE.json
41 lines (41 loc) · 1023 Bytes
/
config.SAMPLE.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
{
"base": {
"defaultStorageType": "bolt",
"googleAnalytics": "UA-321674-10",
"firebase": {
"apiKey": "AIzaSyDi0hhBgLPbpJgprVCDzDkk8zuFpb9XadM",
"authDomain": "example-boardgame.firebaseapp.com",
"databaseURL": "https://example-boardgame.firebaseio.com",
"projectId": "example-boardgame",
"storageBucket": "example-boardgame.appspot.com",
"messagingSenderId": "138149526364"
},
"games": {
"github.com/jkomoros/boardgame/examples": [
"blackjack",
"checkers",
"debuganimations",
"memory",
"pig",
"tictactoe"
]
}
},
"dev": {
"allowedOrigins": "http://localhost:8080",
"disableAdminChecking": true,
"storage": {
"mysql": "root:root@tcp(localhost:3306)/boardgame"
}
},
"prod": {
"allowedOrigins": "https://www.mygame.com",
"adminUserIds": [
"aH1TV07K47RC4mTNCai0ZPnQ9Kd2",
"uYuZl1jXWXVJ9fEk7mDFifhTGmK2"
],
"storage": {
"mysql": "Your production server config goes here, See https://github.com/go-sql-driver/mysql for examples"
}
}
}