27 lines
523 B
TOML
27 lines
523 B
TOML
app = "nodejs-buildpack-app-sample"
|
|
region = "asia-south1"
|
|
handler = ""
|
|
|
|
[build]
|
|
buildpack_builder = "paketobuildpacks/builder-jammy-base"
|
|
buildpacks = ["paketo-buildpacks/nodejs"]
|
|
ignorefile = ".gitignore"
|
|
[build.args]
|
|
foo = "bar"
|
|
|
|
[env]
|
|
FOO = "BAR"
|
|
|
|
[http_service]
|
|
internal_port = 3000
|
|
|
|
[[http_service.checks]]
|
|
interval = "1m21s"
|
|
timeout = "7s"
|
|
grace_period = "2s"
|
|
method = "GET"
|
|
path = "/"
|
|
protocol = "http"
|
|
[http_service.checks.headers]
|
|
My-Custom-Header = "whatever"
|