-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeta.json
46 lines (46 loc) · 1.27 KB
/
deta.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
{
"description": "A Fully Async-based backend for Code Inbox built using FastAPI, ODMantic, MongoDB, Deta, and friends.",
"env": [
{
"description": "This is the user name you'll be creating for remote accesses.",
"key": "MONGODB_USERNAME",
"required": false,
"value": "admin"
},
{
"description": "The corresponding password for that user.",
"key": "MONGODB_PASSWORD",
"required": true,
"value": ""
},
{
"description": "Your remote MongoDB server's domain name.",
"key": "MONGODB_HOST",
"required": true,
"value": ""
},
{
"description": "The name of the database you want to access, in our case, the `shop` database.",
"key": "MONGODB_DATABASE",
"required": true,
"value": "shop"
},
{
"description": "Your Deta project key.",
"key": "DETA_PROJECT_KEY",
"required": true
},
{
"description": "Comma separated urls of the deployed client.",
"key": "CORS_ORIGINS",
"required": true
},
{
"description": "This environment variable defines the debug level.`` means production. `info` to access the docs.",
"key": "DEBUG",
"required": true
}
],
"name": "code-inbox",
"runtime": "python3.9"
}