-
Notifications
You must be signed in to change notification settings - Fork 217
/
app.json
58 lines (58 loc) · 1.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "hostedgpt",
"description": "An open version of ChatGPT you can host anywhere or run locally.",
"logo": "https://raw.githubusercontent.com/allyourbot/hostedgpt/main/app/assets/images/logo.svg",
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"env": {
"RAILS_ENV": {
"description": "Rails environment",
"value": "production"
},
"RAILS_LOG_TO_STDOUT": {
"description": "Rails log to stdout",
"value": "enabled"
},
"SECRET_KEY_BASE": {
"description": "Secret key base for verifying signed cookies",
"generator": "secret"
},
"RAILS_MASTER_KEY": {
"description": "Rails encryption key",
"generator": "secret"
},
"CONFIGURE_ACTIVE_RECORD_ENCRYPTION_FROM_ENV": {
"description": "hostedgpt specific",
"value": "true"
},
"ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY": {
"description": "hostedgpt specific",
"generator": "secret"
},
"ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY": {
"description": "hostedgpt specific",
"generator": "secret"
},
"ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT": {
"description": "hostedgpt specific",
"generator": "secret"
},
"RUN_SOLID_QUEUE_IN_PUMA": {
"description": "Runs the worker process within web dynos",
"value": "true"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": ["heroku-postgresql:essential-0"],
"scripts": {
"postdeploy": "bundle exec rails db:prepare"
},
"stack": "heroku-22"
}