-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
62 lines (62 loc) · 2.07 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
{
"name": "Wagn deck",
"description": "serious web development made fun",
"repository": "https://github.com/wagn/heroku-deck",
"logo": "http://wagn.org/bruce_logo.png",
"keywords": ["wagn", "decko", "deck", "wiki"],
"website": "http://wagn.org",
"addons": ["heroku-postgresql:hobby-dev"],
"env": {
"RAILS_ENV": "production",
"FILE_STORAGE": {
"description": "if you don't have access to a cloud storage service you can change the value to \"web\" and ignore all other variables (that means you can only use urls to refer to images and files but you won't be able to upload anything or change css and script cards)",
"value": "cloud"
},
"PROVIDER": {
"description": "choose the fog gem for your cloud provider (eg. fog/aws, fog/rackspace, or fog/google)",
"value": "fog/aws",
"required": false
},
"DIRECTORY": {
"description": "the cloud directory also known as bucket",
"required": false
},
"SUBDIRECTORY": {
"description": "directory in your bucket used to store file uploads (defaults to \"files\")",
"required": false
},
"CREDENTIALS_PROVIDER": {
"description": "name of your cloud provider (eg. \"AWS\", \"Rackspace\", or \"Google\")",
"value": "AWS",
"required": false
},
"CREDENTIALS_AWS_ACCESS_KEY_ID": {
"description": "required if you use AWS",
"required": false
},
"CREDENTIALS_AWS_SECRET_ACCESS_KEY" : {
"description": "required if you use AWS",
"required": false
},
"CREDENTIALS_REGION": {
"description": "AWS region (defaults to us-east-1)",
"required": false
},
"CREDENTIALS_GOOGLE_ACCESS_KEY_ID": {
"description": "required if you use Google Cloud",
"required": false
},
"CREDENTIALS_GOOGLE_SECRET_ACCESS_KEY" : {
"description": "required if you use Google Cloud",
"required": false
}
},
"scripts": {
"postdeploy": "env DECKO_SEED_REPO_PATH='db/seed' bundle exec rake db:setup"
},
"buildpacks": [
{
"url": "https://github.com/xithan/heroku-buildpack-ruby"
}
]
}