This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
forked from changepack/changepack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
90 lines (90 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "Changepack",
"description": "Changepack is an open-source changelog for your product.",
"website": "https://changepack.co/",
"repository": "https://github.com/changepack/changepack",
"keywords": [
"changelog",
"ruby",
"rails"
],
"success_url": "/",
"env": {
"RACK_ENV": {
"description": "Environment for Rack middleware.",
"value": "production"
},
"RAILS_ENV": {
"description": "Environment for Rails middleware.",
"value": "production"
},
"APP_HOST": {
"description": "The hostname for the application.",
"value": "example.com"
},
"APP_PORT": {
"description": "The port for the application.",
"value": "80"
},
"REDIS_OPENSSL_VERIFY_MODE":{
"description": "OpenSSL verification mode for Redis connections. Ref: https://help.heroku.com/HC0F8CUS/redis-connection-issues",
"value": "none"
},
"GITHUB_KEY": {
"description": "GitHub OAuth key for authentication.",
"value": "example"
},
"GITHUB_SECRET": {
"description": "GitHub OAuth secret for authentication.",
"value": "example"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS access key for ActiveStorage.",
"value": "example"
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS secret key for ActiveStorage.",
"value": "example"
},
"AWS_REGION": {
"description": "AWS region for ActiveStorage.",
"value": "example"
},
"AWS_BUCKET": {
"description": "AWS bucket for ActiveStorage.",
"value": "example"
},
"ACTIVE_STORAGE_SERVICE": {
"description": "Active Storage service.",
"value": "amazon"
},
"OPENAI_ACCESS_TOKEN": {
"description": "OpenAI API access token.",
"value": "example"
},
"SIDEKIQ_USER": {
"description": "Sidekiq username for basic auth.",
"value": "example"
},
"SIDEKIQ_PASSWORD": {
"description": "Sidekiq password for basic auth.",
"value": "example"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "FREE"
},
"worker": {
"quantity": 1,
"size": "FREE"
}
},
"image": "heroku/ruby",
"addons": ["heroku-postgresql", "heroku-redis"],
"buildpacks": [
{ "url": "heroku/ruby" },
{ "url": "heroku-community/apt" }
]
}