-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.json
67 lines (67 loc) · 2.06 KB
/
env.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
[
{
"id": "AZURE_COGNITIVE_SERVICES_KEY",
"scope": [ "server" ],
"description": "Private key used for authenticating with Azure Cognitive Services"
},
{
"id": "AZURE_STOAGE_CONNECTION_STRING",
"scope": [ "server" ],
"description": "Connection string used for authenticating with Azure Storage account"
},
{
"id": "AZURE_STORAGE_URL",
"scope": [ "server" ],
"description": "URL to Azure Storage container which stores images and dynamic assets"
},
{
"id": "AZURE_SENTIMENT_ENDPOINT",
"scope": [ "server" ],
"description": "URL to Azure Sentiment analysis endpoint used with the comment system"
},
{
"id": "DB_HOST",
"scope": [ "server" ],
"description": "Hostname or IP address of the database server"
},
{
"id": "DB_PORT",
"scope": [ "server" ],
"description": "Port that the database server responds to for connections"
},
{
"id": "DB_USER",
"scope": [ "server" ],
"description": "Username used for authenticating with the database server"
},
{
"id": "DB_PASS",
"scope": [ "server" ],
"description": "Password used for authenticating with the database server"
},
{
"id": "DB_NAME",
"scope": [ "server" ],
"description": "The name of the database"
},
{
"id": "RECAPTCHA_SECRET",
"scope": [ "server" ],
"description": "Secret key used for verifying human response through Google's ReCaptcha"
},
{
"id": "VUE_APP_SITE_NAME",
"scope": [ "client" ],
"description": "The name of the blog"
},
{
"id": "VUE_APP_INIT",
"scope": [ "client" ],
"description": "Absolute URL to the initial endpoint the client application connects to for further requests"
},
{
"id": "VUE_APP_RECAPTCHA_CODE",
"scope": [ "client" ],
"description": "Public code used with Google's ReCaptcha to verify human response"
}
]