-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdeta.json
80 lines (80 loc) · 2.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"description": "A fully async based backend for Brave Chat built using FastAPI, SingleStore, databases, pydantic, SQLAlchemy, Redis, and Deta.",
"env": [
{
"description": "This is the user name you'll be creating for remote accesses. By default, this variable is equal to admin.",
"key": "SINGLESTORE_USERNAME",
"required": false,
"value": "admin"
},
{
"description": "The corresponding password for that user.",
"key": "SINGLESTORE_PASSWORD",
"required": true,
"value": ""
},
{
"description": "Your remote MySQL server's domain name.",
"key": "SINGLESTORE_HOST",
"required": true,
"value": ""
},
{
"description": "The port number where MySQL is listening to.",
"key": "SINGLESTORE_PORT",
"required": true,
"value": "3306"
},
{
"description": "The name of the database you want to access, in our case, the `chat` database.",
"key": "SINGLESTORE_DATABASE",
"required": true,
"value": "chat"
},
{
"description": "Secret used to sign the JWTs",
"key": "JWT_SECRET_KEY",
"required": true
},
{
"description": "Your Redis account username. `default` is the default username.",
"key": "REDIS_USERNAME",
"required": false,
"value": "default"
},
{
"description": "Your Redis account password.",
"key": "REDIS_PASSWORD",
"required": true
},
{
"description": "Your Redis url to the node to connect.",
"key": "REDIS_HOST",
"required": true
},
{
"description": "Your Redis node exposed port number.",
"key": "REDIS_PORT",
"required": true,
"value": ""
},
{
"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": false,
"value": ""
}
],
"name": "brave-chat",
"runtime": "python3.9"
}