File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ resource "heroku_app" "webdav" {
8
8
}
9
9
10
10
buildpacks = [
11
- " https://buildpack-registry.s3.amazonaws.com/buildpacks/emk/rust.tgz"
11
+ # The Rust application is compiled and pushed to Heroku via a GitHub Action, so
12
+ # we don't need to specify a specific buildpack here. So, we just fall back to
13
+ # the Heroku CLI buildpack as a default.
14
+ " heroku-community/cli"
12
15
]
13
16
}
14
17
@@ -19,12 +22,6 @@ resource "heroku_formation" "webdav_heroku_web" {
19
22
quantity = 1
20
23
}
21
24
22
- # Enable this feature so that the Rust application can access the git commit hash.
23
- resource "heroku_app_feature" "webdav_runtime_dyno_metadata" {
24
- app_id = heroku_app. webdav . id
25
- name = " runtime-dyno-metadata"
26
- }
27
-
28
25
resource "heroku_domain" "webdav" {
29
26
app_id = heroku_app. webdav . id
30
27
hostname = " webdav.dandiarchive.org"
You can’t perform that action at this time.
0 commit comments