-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.04 KB
/
app.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "AI-Ready Rails 8 Starter",
"description": "The fastest way to go from idea to working Rails application with AI superpowers",
"repository": "https://github.com/your-username/rails-ai-starter",
"logo": "https://example.com/logo.png",
"keywords": ["rails", "ai", "openai", "claude", "gemini", "starter", "template"],
"stack": "heroku-22",
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "basic"
},
"worker": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
{
"plan": "heroku-postgresql:essential-0"
},
{
"plan": "heroku-redis:mini"
}
],
"env": {
"RAILS_ENV": "production",
"RACK_ENV": "production",
"RAILS_LOG_TO_STDOUT": "enabled",
"RAILS_SERVE_STATIC_FILES": "enabled",
"LLM_PROVIDER": "openai",
"WEB_CONCURRENCY": "2",
"RAILS_MAX_THREADS": "5"
},
"scripts": {
"postdeploy": "bundle exec rails db:migrate db:seed"
}
}