-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.SAMPLE.json
41 lines (41 loc) · 987 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": {
"app_title": "My Card Collection",
"app_description": "My card collection is a collection of cards",
"firebase": {
"apiKey": "APIKEYHERE",
"authDomain": "PROJECT_ID.firebaseapp.com",
"databaseURL": "https://PROJECT_ID.firebaseio.com",
"projectId": "PROJECT_ID",
"storageBucket": "PROJECT_ID.appspot.com",
"messagingSenderId": "NUMBER"
},
"twitter_handle": "CHANGE-ME",
"disable_twitter": false,
"openai_api_key": "CHANGE-ME",
"backup_bucket_name": "CHANGE-ME",
"qdrant": {
"cluster_url": "CHANGE-ME",
"api_key": "CHANGE-ME"
},
"seo": false,
"permissions" : {
"all" : {
"viewApp": true
},
"anonymous": {
"star": true,
"markRead": true,
"modifyReadingList": true
},
"signed_in": {
"comment": true
}
},
"google_analytics": "CHANGE-ME",
"disable_persistence": false,
"disable_anonymous_login": false,
"disable_service_worker": false,
"disable_callable_cloud_functions": false
}
}