-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeta.json
56 lines (56 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
56
{
"description": "A Fully Async-based backend for Moerphous built using FastAPI, ODMantic, MongoDB, IPFS, XRPL-PY 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 `xrpl` database.",
"key": "MONGODB_DATABASE",
"required": true,
"value": "xrpl"
},
{
"description": "Your pinata api key.",
"key": "PINATA_API_KEY",
"required": true
},
{
"description": "Your pinata api secret.",
"key": "PINATA_API_SECRET",
"required": true
},
{
"description": "Secret used to sign the JWTs",
"key": "JWT_SECRET_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": "moerphous",
"runtime": "python3.9"
}