-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
51 lines (51 loc) · 973 Bytes
/
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
43
44
45
46
47
48
49
50
51
{
"name": "sql-explorer",
"repository": "https://github.com/explorerhq/django-sql-explorer",
"keywords": ["python", "django", "sql", "analytics", "reporting"],
"description": "Deploy SQL Explorer to Heroku with AI assistant and User Uploads",
"scripts": {},
"env": {
"AI_API_KEY": {
"required": true
},
"AI_BASE_URL": {
"required": true
},
"EXPLORER_S3_ACCESS_KEY": {
"required": true
},
"EXPLORER_S3_BUCKET": {
"required": true
},
"EXPLORER_S3_SECRET_KEY": {
"required": true
},
"REDIS_TLS_URL": {
"required": true
},
"REDIS_URL": {
"required": true
},
"SECRET_KEY": {
"required": true
}
},
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"addons": [
"heroku-postgresql",
"heroku-redis"
],
"buildpacks": [
{
"url": "heroku/python"
}
],
"stack": "heroku-22"
}