When using Now CLI, Now Desktop or Now for GitHub, the configuration for your deployment is read from the now.json
file.
The parameters stored in that file are passed to the Deployment Creation API endpoint, which performs validation and stores the metadata in our backend.
Schemas
If you are looking for a strict or machine-friendly specification of the configuration, we recommend looking at zeit/schemas
.
Configuration File
The following sections describe each field allowed in a now.json
configuration file and how to use them.
Each deployment receives and understands the now.json
configuration as instructions of how to build and then act when deployed.
name
Type: String
.
Valid values: string name for the deployment.
Limit: A maximum length of 52 characters
The prefix for all new deployment instances. The CLI usually generates this field automatically based on the name of the directory. But if you'd like to define it explicitly, this is the way to go.
The defined name is also used to organize the deployment into a project.
{
"name": "zeit-chat"
}
version
Type: Number
.
Valid values: 1
, 2
.
Specifies the Now Platform version the deployment should use and is known to work with. We strongly recommend setting a version
when working on production systems or using source control (e.g. Git).
{
"version": 2
}
alias
Type: Array
or String
.
Valid values: domain names (optionally including subdomains) added to the account, or a string for a suffxed URL using .now.sh
or a Custom Deployment Suffix.
The alias or aliases are applied automatically using Now for GitHub or Now for GitLab when merging or pushing to the default branch.
You can deploy to the defined aliases using Now CLI by setting the production deployment environment target.
{
"alias": ["my-domain.com", "my-alias"]
}
scope
Type: String
.
Valid values: For teams, either an ID or slug. For users, either a email address, username, or ID.
This property determines the scope (user or team) under which the project will be deployed by Now CLI or Now Desktop.
Furthermore, it also affects any other actions that the user takes within the directory that contains this configuration (e.g. listing secrets using now secrets ls
).
{
"scope": "my-team"
}
env
Type: Object
of String
keys and values.
Valid values: environment keys and values.
Environment variables passed to the invoked Lambdas.
build.env
Type: Object
of String
keys and values inside the build
Object
.
Valid values: environment keys and values.
Environment variables passed to the Build processes.
builds
Type: Array
of build Object
.
Valid values: a list of build descriptions whose src
references valid source files.
Build object definition:
src
(String
): A glob expression or pathname. If more than one file is resolved, one build will be created per matched file. It can include*
and**
.use
(String
): A npm module to be installed by the build process. It can include a semver compatible version (e.g.:@org/proj@1
).config
(Object
): Optionally, an object including arbitrary metadata to be passed to the Builder.
builds
item is specified, only the outputs of the build processes will be included in the resulting deployment as a security precaution. This is why we need to white-list static files explicitly with@now/static
.For more information on builds and builders, see the documentation:
routes
Type: Array
of route Object
.
Valid values: a list of route definitions.
Route object definition:
src
: A PCRE-compatible regular expression that matches each incoming pathname (excluding querystring).methods
: A set of HTTP method types. If no method is provided, requests with any HTTP method will be a candidate for the route.dest
: A destination pathname or full URL, including querystring, with the ability to embed capture groups as $1, $2…headers
: A set of headers to apply for responses.status
: A status code to respond with. Can be used in tandem withLocation:
header to implement redirects.continue
: A boolean to change matching behavior. Iftrue
, routing will continue even when thesrc
is matched.
{
"builds": [
{ "src": "*.html", "use": "@now/static" },
{ "src": "*.js", "use": "@now/node" }
],
"routes": [
{ "src": "/custom-page", "headers": {"cache-control": "s-maxage=1000"}, "dest": "/index.html" },
{ "src": "/api", "dest": "/my-api.js" },
{ "src": "/users", "methods": ["POST"], "dest": "/users-api.js" },
{ "src": "/users/(?<id>[^/]*)", "dest": "/users-api.js?id=$id" },
{ "src": "/.*", "dest": "https://my-old-site.com"},
{ "src": "/legacy", "status": 404},
{ "src": "/redirect", "status": 301, "headers": { "Location": "https://zeit.co/" } }
]
}
For more information on routes, see the documentation:
regions
Type: Array
of region identifier String
.
Valid values: a list of valid region identifiers.
By setting and modifying this value, you can decide the deployment regions of the Lambdas that get created as a result of the build steps. By default, the closest region to the geographical location of the deployment is used, or if using a Now for Git integration, SFO is used by default.
This value does not impact static files or edge caches, since deployments always have a CDN layer in front.
The special value all
can be used to target all available regions.
regions
support targeting a region generically, by omitting the number. If sfo
is specified, our backend will select a singular region (like sfo1
) at deploy time.{
"regions": ["sfo1", "bru"]
}
public
Type: Boolean
.
When set to true
, both the source view and logs view will be publicly accessible (without authentication with ZEIT).
{
"public": true
}
github.enabled
Type: Boolean
.
When set to false
, Now for GitHub will not deploy the given project regardless of the GitHub app being installed.
{
"github": {
"enabled": false
}
}
github.autoAlias
Type: Boolean
.
When set to false
, Now for GitHub will not apply the alias upon merge.
{
"alias": ["my-zeit-website.com"],
"github": {
"autoAlias": false
}
}
github.silent
Type: Boolean
.
When set to true
, Now for GitHub will stop commenting on pull requests and commits.
{
"github": {
"silent": true
}
}
github.autoJobCancelation
Type: Boolean
.
When set to false, Now for GitHub will always build pushes in sequence without cancelling a build for the most recent commit.
{
"github": {
"autoJobCancelation": false
}
}