-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathapp.json
35 lines (35 loc) · 1.23 KB
/
app.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
{
"name": "Agora Token Service",
"description": "an Agora Token Server using Golang & Gin to run as a webservice",
"repository": "https://github.com/AgoraIO-Community/agora-token-service",
"logo": "https://www.agora.io/en/wp-content/themes/agora-2020/images/agora-logo.svg",
"website": "http://www.agora.io",
"keywords": [
"agora",
"Agora.io",
"DynamicKey",
"ChannelKey",
"RecordingKey",
"video",
"voice",
"communications",
"recording",
"ARS",
"token", "server", "go", "golang", "gin"
],
"env": {
"APP_ID": {
"description": "Agora.io App ID: Login to the Agora.io Developer Dashboard (http://dashboard.agora.io), and navigate to the \"Projects\" tab to get this value",
"required": true
},
"APP_CERTIFICATE": {
"description": "Agora.io App Certificate: Login to the Agora.io Developer Dashboard (http://dashboard.agora.io), and navigate to the \"Projects\" tab to get this value",
"required": true
},
"CORS_ALLOW_ORIGIN": {
"description": "The allowed origin for Cross-Origin Resource Sharing (CORS). This determines which origins are permitted to access the resources of your application.",
"required": true,
"value": "*"
}
}
}