|
1 | 1 | { |
2 | | - "buildpacks": [ |
3 | | - { |
4 | | - "url": "heroku/python" |
5 | | - } |
6 | | - ], |
7 | | - "description": "A Fully Async-based backend for Code Inbox built using FastAPI, ODMantic, MongoDB, Deta, and friends.", |
8 | | - "env": { |
9 | | - "DEBUG": { |
10 | | - "description": "This environment variable defines the debug level.`` means production. `info` to access the docs.", |
11 | | - "required": false, |
12 | | - "value": "" |
| 2 | + "buildpacks": [{"url": "heroku/python"}], |
| 3 | + "description": "A Fully Async-based backend for Code Inbox built using FastAPI, ODMantic, MongoDB, Deta, and friends.", |
| 4 | + "env": { |
| 5 | + "DEBUG": { |
| 6 | + "description": "This environment variable defines the debug level.`` means production. `info` to access the docs.", |
| 7 | + "required": false, |
| 8 | + "value": "", |
| 9 | + }, |
| 10 | + "CORS_ORIGINS": { |
| 11 | + "description": "Comma separated urls of the deployed client.", |
| 12 | + "required": true, |
| 13 | + }, |
| 14 | + "DETA_PROJECT_KEY": { |
| 15 | + "description": "The project key of your Deta account.", |
| 16 | + "required": true, |
| 17 | + }, |
| 18 | + "MONGODB_USERNAME": { |
| 19 | + "description": "This is the user name you'll be creating for remote accesses.", |
| 20 | + "required": true, |
| 21 | + }, |
| 22 | + "MONGODB_PASSWORD": { |
| 23 | + "description": "The corresponding password for that user.", |
| 24 | + "required": true, |
| 25 | + }, |
| 26 | + "MONGODB_HOST": { |
| 27 | + "description": "Your remote MongoDB server's domain name.", |
| 28 | + "required": true, |
| 29 | + }, |
| 30 | + "MONGODB_DATABASE": { |
| 31 | + "description": "The name of the database you want to access, in our case, the `shop` database.", |
| 32 | + "required": false, |
| 33 | + "value": "shop", |
| 34 | + }, |
13 | 35 | }, |
14 | | - "CORS_ORIGINS": { |
15 | | - "description": "Comma separated urls of the deployed client.", |
16 | | - "required": true |
17 | | - }, |
18 | | - "DETA_PROJECT_KEY": { |
19 | | - "description": "The project key of your Deta account.", |
20 | | - "required": true |
21 | | - }, |
22 | | - "MONGODB_USERNAME": { |
23 | | - "description": "This is the user name you'll be creating for remote accesses.", |
24 | | - "required": true |
25 | | - }, |
26 | | - "MONGODB_PASSWORD": { |
27 | | - "description": "The corresponding password for that user.", |
28 | | - "required": true |
29 | | - }, |
30 | | - "MONGODB_HOST": { |
31 | | - "description": "Your remote MongoDB server's domain name.", |
32 | | - "required": true |
33 | | - }, |
34 | | - "MONGODB_DATABASE": { |
35 | | - "description": "The name of the database you want to access, in our case, the `shop` database.", |
36 | | - "required": false, |
37 | | - "value": "shop" |
38 | | - } |
39 | | - }, |
40 | | - "formation": { |
41 | | - "web": { |
42 | | - "quantity": 1, |
43 | | - "size": "free" |
44 | | - } |
45 | | - }, |
46 | | - "image": "heroku/python", |
47 | | - "keywords": [ |
48 | | - "fastapi", |
49 | | - "mongodb", |
50 | | - "deta", |
51 | | - "api" |
52 | | - ], |
53 | | - "name": "code-inbox-server", |
54 | | - "repository": "https://github.com/wiseaidev/code-inbox-server", |
55 | | - "success_url": "/docs" |
| 36 | + "formation": {"web": {"quantity": 1, "size": "free"}}, |
| 37 | + "image": "heroku/python", |
| 38 | + "keywords": ["fastapi", "mongodb", "deta", "api"], |
| 39 | + "name": "code-inbox-server", |
| 40 | + "repository": "https://github.com/wiseaidev/code-inbox-server", |
| 41 | + "success_url": "/docs", |
56 | 42 | } |
0 commit comments