-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
42 lines (42 loc) · 1.58 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
36
37
38
39
40
41
42
{
"buildpacks": [{"url": "heroku/python"}],
"description": "A Fully Async-based backend for Code Inbox built using FastAPI, ODMantic, MongoDB, Deta, and friends.",
"env": {
"DEBUG": {
"description": "This environment variable defines the debug level.`` means production. `info` to access the docs.",
"required": false,
"value": "",
},
"CORS_ORIGINS": {
"description": "Comma separated urls of the deployed client.",
"required": true,
},
"DETA_PROJECT_KEY": {
"description": "The project key of your Deta account.",
"required": true,
},
"MONGODB_USERNAME": {
"description": "This is the user name you'll be creating for remote accesses.",
"required": true,
},
"MONGODB_PASSWORD": {
"description": "The corresponding password for that user.",
"required": true,
},
"MONGODB_HOST": {
"description": "Your remote MongoDB server's domain name.",
"required": true,
},
"MONGODB_DATABASE": {
"description": "The name of the database you want to access, in our case, the `shop` database.",
"required": false,
"value": "shop",
},
},
"formation": {"web": {"quantity": 1, "size": "free"}},
"image": "heroku/python",
"keywords": ["fastapi", "mongodb", "deta", "api"],
"name": "code-inbox-server",
"repository": "https://github.com/wiseaidev/code-inbox-server",
"success_url": "/docs",
}