forked from rust-lang/crates.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 loc) · 1.31 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
{
"name": "Crates.io Mirror",
"description": "A mirror of crates.io",
"repository": "https://github.com/rust-lang/crates.io",
"env": {
"GIT_REPO_URL": {
"description": "The git URL of your crates index repository."
},
"GH_CLIENT_ID": {
"value": "",
"required": false
},
"GH_CLIENT_SECRET": {
"value": "",
"required": false
},
"S3_BUCKET": "crates-io",
"S3_ACCESS_KEY": {
"value": "",
"required": false
},
"S3_SECRET_KEY": {
"value": "",
"required": false
},
"SESSION_KEY": {
"generator": "secret"
},
"HEROKU": "1",
"MIRROR": "1",
"GIT_REPO_CHECKOUT": "./tmp/index-co"
},
"formation": {
"web": {
"quantity": 1,
"size": "Free"
}
},
"addons": [
"heroku-postgresql:hobby-dev"
],
"buildpacks": [
{
"url": "https://github.com/rcaught/heroku-buildpack-cmake.git#e4e2c9e"
},
{
"url": "https://github.com/alexcrichton/heroku-buildpack-rust.git#ca218b5"
},
{
"url": "https://github.com/tonycoco/heroku-buildpack-ember-cli.git#e4aed2b"
},
{
"url": "https://github.com/ryandotsmith/nginx-buildpack.git#005ca03"
}
]
}