Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/how-to/apps/apppack_toml.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This file can be used to configure how your app is built, released, and the serv

TOML is a human-readable configuration format. It's similar to JSON or YAML, but with a different syntax. You can find a full reference of the syntax at [toml.io](https://toml.io).

You must store this file in the root of your repository and name it `apppack.toml`. If it exists, [configuration via `app.json`](./apps.md#appjson) will be ignored.
You must store this file in the root of your repository and name it `apppack.toml` or set the environment variable `APPPACK_TOML` to be the filename for your environment. If it exists, [configuration via `app.json`](./apps.md#appjson) will be ignored.

## `[build]`

Expand Down
Loading