-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
56 lines (56 loc) · 1.42 KB
/
app.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name": "Collaborado",
"description": "A Ruby on Rails application with Google OAuth authentication, course management system, discussion channels, and upvoting features",
"repository": "https://github.com/tamu-edu-students/606-project3-group5",
"keywords": [
"rails",
"ruby",
"course-management",
"education",
"oauth",
"collaborado",
"discussion-forum"
],
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"env": {
"RAILS_MASTER_KEY": {
"description": "Rails master key for encrypted credentials. Set this on staging/production apps; not required for CI.",
"required": false
},
"GOOGLE_CLIENT_ID": {
"description": "Google OAuth client ID for authentication",
"value": "test_client_id",
"required": false
},
"GOOGLE_CLIENT_SECRET": {
"description": "Google OAuth client secret for authentication",
"value": "test_client_secret",
"required": false
},
"RAILS_SERVE_STATIC_FILES": {
"description": "Enable serving static files in production",
"value": "true",
"required": false
},
"RAILS_LOG_TO_STDOUT": {
"description": "Enable logging to stdout for Heroku",
"value": "true",
"required": false
}
},
"environments": {},
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
},
"stack": "heroku-22"
}