forked from biniyam69/flexile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
122 lines (122 loc) · 2.38 KB
/
app.json
File metadata and controls
122 lines (122 loc) · 2.38 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "flexile",
"scripts": {
"postdeploy": "DISABLE_DATABASE_ENVIRONMENT_CHECK=1 bundle exec rake db:schema:load db:seed"
},
"env": {
"APP_BASE": {
"required": true,
"value": "backend/"
},
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_REGION": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"LANG": {
"required": true
},
"RACK_ENV": {
"required": true
},
"RAILS_ENV": {
"required": true
},
"RAILS_LOG_TO_STDOUT": {
"required": true
},
"OPENAI_API_KEY": {
"required": true
},
"RAILS_MASTER_KEY": {
"required": true
},
"RAILS_SERVE_STATIC_FILES": {
"required": true
},
"S3_PRIVATE_BUCKET": {
"required": true
},
"S3_PUBLIC_BUCKET": {
"required": true
},
"SECRET_KEY_BASE": {
"required": true
},
"WISE_API_KEY": {
"required": true
},
"WISE_PROFILE_ID": {
"required": true
},
"BUGSNAG_API_KEY": {
"required": true
},
"BUNDLE_GEMS__CONTRIBSYS__COM": {
"required": true
},
"NODE_OPTIONS": {
"required": true
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "1"
},
"PUPPETEER_EXECUTABLE_PATH": {
"description": "The path to the puppeteer executable.",
"value": "/app/.apt/usr/bin/google-chrome",
"required": true
},
"PUPPETEER_SKIP_DOWNLOAD": {
"description": "Whether to skip the download of puppeteer.",
"value": "true",
"required": true
}
},
"formation": {
"sidekiq": {
"quantity": 1
},
"web": {
"quantity": 1
}
},
"addons": [
{
"plan": "heroku-postgresql",
"as": "DATABASE",
"options": {
"version": "16"
}
},
{
"plan": "heroku-redis",
"as": "SIDEKIQ_REDIS",
"options": {
"version": "7.2"
}
},
{
"plan": "heroku-redis",
"as": "REDIS",
"options": {
"version": "7.2"
}
},
{
"plan": "memcachedcloud:30",
"as": "MEMCACHEDCLOUD"
}
],
"buildpacks": [
{ "url": "https://github.com/lstoll/heroku-buildpack-monorepo" },
{ "url": "heroku/google-chrome" },
{ "url": "heroku/nodejs" },
{ "url": "heroku/ruby" }
],
"stack": "heroku-22"
}