Netlify
Last updated
Last updated
Netlify CMS is the first CMS for the new age of Git-centric web development. It is completely build tool agnostic and works with storing structured content in Git. A CMS for site generators. Netlify CMS gives non-technical users a simple way to edit and add content to any site built with a site generator.
Netlify Playground is a sandbox application to test all configurations related with Netlify before setting those up in your sites.
GoTell is an API and build tool for handling large amounts of comments.
GoTrue is a small open-source API written in golang that can act as a self-standing API service for handling user registration and authentication for projects. It's based on OAuth2 and JWT and will handle user signup, authentication and custom user data.
GoJoin is a tiny API that acts as a wrapper for Stripe's subscription API. It exposes simple call methods for single page apps and sites.
Many open source projects have found their home on Netlify.
Open source project teams qualify for free unlimited members.
Netlify frequently contributes to many different projects in our space, in an effort to push the category forward.
Netlify enforces a strict concept of atomic deploys. If you’re used to uploading files with FTP, SSH, RSync or S3’s API, this is quite a different concept.
Instead of pushing individual files to Netlify, you always create a new deploy. Netlify will compare the new deploy with your existing deploy and determine which files have changed and need to be uploaded.
No changes go live on your site’s public URL before all changes have been uploaded. Once all the changes are ready, the new version of the site immediately goes live on the CDN.
This means deploys are atomic, and your site is never in an inconsistent state while you’re uploading a new deploy.
With FTP or S3 uploads, each file is just pushed live one after the other, so you can easily get into situations where a new HTML page is live before the supporting assets (images, scripts, CSS) have been uploaded. And if your connection cuts out in the middle of an upload, your site could get stuck in a broken state for a long time.
Atomic deploys guarantee that your site is always consistent.
You can find a deploy log on the detail page of every deploy. The log provides content such as:
details about your site’s build image, dependency caching, and Netlify Build process, including all of the standard output which comes from running your build
information about any Build Plugins your site may have installed and their execution
details about the success, failure, or cancellation of the deploy
To share deploy log content, you can copy the entire log by selecting Copy to clipboard (the clipboard icon). You can also generate a shareable URL for a single log line or a range of lines.
For a single log line, select the line number to highlight the line.
For a range of log lines, select the line number for the first log line in the range, then press shift and select the final log line number to highlight the full range.
If needed, press esc to deselect log lines.
Once you’ve selected a line or range, copy the resulting URL from the address bar of your web browser. The URL syntax should resemble this: https://app.netlify.com/sites/SITE_NAME/deploys/DEPLOY_ID#L5-L10
Netlify lets you control which branches in your Git repository you want to deploy.
Production branch: the Git branch that Netlify uses to build and deploy changes to your site’s main URL. For example, www.yourcustomdomain.com
and yoursitename.netlify.app
.
Production deploy: a deploy from the production branch. If auto publishing is enabled, each new production deploy will update what is published at your site’s main URL.
Branch deploy: a deploy generated from a branch that is not your production branch. Branch deploys are published to a URL which includes the branch name as a prefix. For example, if a branch is called staging
, it will deploy to staging--yoursitename.netlify.app
. If you use Netlify DNS, you can enable branch subdomains, so the staging
branch example would deploy to staging.yourcustomdomain.com
.
Permalink: every successful build of your site also creates a deploy permalink that starts with the deploy ID number. For example: 1234abcd12acde000111cdef--yoursitename.netlify.app
. The web content at this URL never changes. This is in contrast to production deploys, branch deploys, and Deploy Previews where the web content is updated when you merge or push new commits.
By default, Netlify deploys the site’s production branch after every change.
To generate branch deploys for other branches in your repository, select your site on the Sites page. Then go to Site settings > Build & deploy > Continuous Deployment > Branches, and select Edit settings. You can choose to deploy all branches (including future branches), or select individual branches you would like to deploy.
When selecting individual branches for deployment, type the name of each branch you want to deploy. You can also enter branch names you haven’t created yet.
Once you select some or all of your branches for branch deploys, Netlify will start watching those branches for new commits and pull/merge requests. As soon as you start pushing changes to those branches, you’ll find new deploys for those branches.
You can control in the UI whether or not Deploy Previews are generated for pull/merge requests. You can also enable or disable the Netlify Drawer. To change these settings, select your site and go to Site settings > Build & deploy > Continuous Deployment > Deploy Previews, then select Edit settings.
There are three predefined deploy contexts:
production
: this context corresponds to the main site’s deployment, attached to the Git branch you set when the site is created.
deploy-preview
: this context corresponds to the previews we build for pull/merge requests.
branch-deploy
: this context corresponds to deploys from branches that are not the site’s main production branch.
Besides these three predefined contexts, sites can use also branch names as custom deploy contexts. For example, a branch called staging
will match a deploy context called staging
.
Overrides are applied in a hierarchical order. The site’s global settings apply to each deploy, if we’re building the production site, and if you change options in your production context, they will be overridden. Only options that are set explicitly are overridden; if you leave one out, the build will use the value of the global settings or previous contexts. Environment variables are also overridden individually, for example, you can have access tokens as environment variables per context.
To configure deploy contexts, you must create a file called netlify.toml
in the root of your Git repository. There, you can set as many contexts as you want to configure.
File-based configuration settings will override those set in the UI. In the netlify.toml
file, settings for more specific contexts will override more general ones. For example, settings for a specific branch will override those for branch-deploy.
This page covers features and tools you can use to create deploys with or without continuous deployment.
Note
When you create a deploy manually without continuous deployment, Netlify does not run a build command.
Netlify will run your build command and deploy the result whenever you push to your Git repo. The benefits of Netlify’s continuous deployment include:
No deploying without committing and pushing first
Easy collaboration through pull/merge requests
Fix a typo through your Git provider’s web UI from your mobile
The Deploy to Netlify button helps users deploy new sites from templates with one single click. It provides web developers a simple one-click step to let their users deploy those applications on Netlify.
It’s designed to be used in README files, documentation sites, and probably anything that renders as an html file.
The template code must be available in a public repository stored on GitHub.com or GitLab.com.
You can use any markup language that renders as HTML to display the button. There are two very important URLs that you’ll need:
The SVG URL for the button: https://www.netlify.com/img/deploy/button.svg
.
The URL the button takes users to: https://app.netlify.com/start/deploy
. This link requires the public Git repository as a parameter, for example:
Within the [template]
section in that file, you can set two directives:
A list of incoming hooks for the users site. This is very useful if you want to allow a third party service to control when to deploy the site. This is what headless CMS services like Contentful and DatoCMS do. Users can give those providers the address Netlify generates for their specific incoming requests.
A list of required environment variables. This is the way to let users configure specific configuration options upon deployment. It also enables customization without having to change the code of the base template.
You can pass environment variable values for the site template in the hash of the template’s Deploy to Netlify URL with key/value pairs. Using the example environment variables above, SECRET_TOKEN
and CUSTOM_LOGO
, the resulting URL will be something like this:
Passing environment variable values in the hash ensures that they’re processed on the client side only. You can can create custom Deploy to Netlify buttons for your users with tokens and other secure data, and they won’t appear in Netlify logs.
Deploy Previews allow you and your team to experience changes to any part of your site without having to publish them to production.
Deploy Previews work by deploying pull/merge requests to a unique URL different from the one your production site uses. This URL has the prefix deploy-preview
followed by the identifier number of the pull request or merge request. For example, a Deploy Preview for pull/merge request #42 will deploy to deploy-preview-42--yoursitename.netlify.app
. The web content of this URL is updated every time changes are pushed to the associated pull/merge request.
Every deploy also has a permalink that starts with the deploy ID number. For example: 1234abcd12acde000111cdef--yoursitename.netlify.app
. The contents of this URL never change, even after you redeploy your site.
With collaborative Deploy Previews, you and your team can add, review, and manage feedback about site changes right from your site. You can leave comments, take screenshots and video, and test responsiveness on a mobile device.
You can access collaboration tools in the Netlify Drawer using the Netlify icon in your Deploy Preview.
Keep the following considerations in mind when working with collaborative Deploy Previews.
#Requirements
Deploy Preview URLs. Collaboration tools are only available on Deploy Previews accessed through their deploy-preview
prefixed URLs.
Valid HTML. Your site must have valid HTML output with opening and closing body
tags.
#Limitations
On-demand Builders and server-side rendering. Collaboration tools are not available on sites using On-demand Builders or server-side rendering.
Bitbucket. Collaboration tools are currently not available on Bitbucket deploys.
The Netlify Drawer provides access to a number of collaboration tools that team members and approved Reviewers can use to leave feedback about a Deploy Preview.
#Leave comments
Team members and approved Reviewers can leave comments on the Deploy Preview that are synced and mirrored on the GitHub pull request or GitLab merge request. Select the Activity tab in the Netlify Drawer to start writing a comment.
If you are a pending Reviewer, your submitted comments will remain hidden until a team Owner or Collaborator approves you.
#Send feedback to third-party services
You can send feedback about a Deploy Preview to a number of productivity tools by connecting your Netlify user account to your user account for the tool:
To get started, go to the Integrations tab in the Netlify Drawer and select Connect for the third-party service you want to use.
Once your Netlify user account is connected to a third-party service, you can submit feedback to the service directly from the Deploy Preview by selecting New issue.
#Take screenshots and record screen
You can take a screenshot or screen recording and use it in feedback in the pull/merge request or third-party integration.
To add a screenshot, hover over the Netlify icon and select Take screenshot. You can edit and annotate your screenshot before using it in feedback.
To record a screen interaction, hover over the Netlify icon and select Record screen. You can use the screen recording in your feedback as a GIF.
You can also drag and drop image and video files directly onto the Activity tab text area to include them in a comment using Markdown syntax.
The Netlify Drawer also provides tools for team Owners and Collaborators to request feedback about a Deploy Preview.
#Invite contributors
You can select Add members to invite users to join your team, including an unlimited number of free Reviewers.
#Set entry path
The entry path is the page visitors will land on when they access your Deploy Preview using links on the Deploys page, deploy details page, in GitHub, or in GitLab. You can set an entry path in the following ways:
Enter the path in the Settings tab of the Netlify Drawer.
Tag @netlify /path/to/page
in the initial description of your GitHub pull request or GitLab merge request.
Hover over the Netlify icon and select Set as entry path to save the current page as the initial route. This option only appears if you are the author of the pull/merge request.
When writing a value for the entry path, it must be relative and start with /
.
The Netlify Drawer provides access to tools that team Owners, Collaborators, and Reviewers can use to test and troubleshoot specific site deploys.
#Monitor logs
Owners and Collaborators can access the deploy log and serverless function logs in the Netlify Drawer to help with monitoring and troubleshooting a specific deploy.
#Check responsiveness and site performance
You can open your Deploy Preview on your mobile device to check your site’s performance and test responsiveness. To open your Deploy Preview on a mobile device, hover over the Netlify icon and select Open on device. You can then scan the QR code with your device to open the page.
#Access browser details and replicate in BrowserStack
In collaborative Deploy Preview feedback, find the browser information (usually near the bottom of the feedback) and select Open in BrowserStack to launch a BrowserStack instance that matches the author of the comment’s browser, browser version, viewport size, and operating system.
#Netlify Drawer is missing
If you can’t find the Netlify Drawer on your Deploy Preview, verify that the Netlify Drawer is enabled for your site. You can do this by going to your site in the Netlify UI and selecting Site settings > Build & deploy > Continuous Deployment > Deploy Previews.
default-src
script-src
frame-src
child-src
To address this issue, add app.netlify.com
and netlify-cdp-loader.netlify.app
to the allow list in the _headers
or netlify.toml
file. For example:
_headers
netlify.toml
#Netlify Drawer blocks content
If the Netlify Drawer is blocking important UI elements, you can drag and drop the icon and pin it to any of the four corners of your screen.
#Reviewer comments appear as a different GitLab user
If a Reviewer authenticates with GitLab, comments they add through collaboration tools in a Deploy Preview are mirrored in a merge request using their GitLab profile. If a Reviewer doesn’t authenticate with GitLab or doesn’t have a GitLab account, comments mirrored in a merge request appear under the profile of the GitLab user who configured the site on Netlify. These mirrored comments start with A reviewer left a comment.
To change the GitLab user for unauthenticated comments on merge requests, a GitLab project Owner or Maintainer can take these steps:
In GitLab, invite a new user with a role of Reporter or above to your project. The email address for this user must be one you have access to.
Confirm the user and log into GitLab with that account.
In a Deploy Preview from one of your GitLab sites, open the Deploy settings tab in the Netlify Drawer. Paste in the token from GitLab, and select Save.
Comments left by Reviewers who have not authenticated with GitLab should now be associated with the Netlify user on your project.
#Preview changes without the Netlify Drawer
To opt out of loading the Netlify Drawer on a site’s Deploy Previews, go to Site settings > Build & deploy > Continuous Deployment > Deploy Previews, select Edit settings, and disable the Netlify Drawer.
Netlify offers several post processing features to help you optimize your sites. These are available under Site settings > Build & deploy > Post processing.
Often you want to inject JavaScript snippets into all pages of your site, either in the <head>
or at the end of the <body>
tag.
Most analytics providers, retargeting services, and A/B testing services will give you an HTML snippet and ask you to add it to every page on your site. Netlify lets you do this without having to pollute the source code for the site with production specific analytics snippets.
You can pick between injecting the scripts before the closing </head>
tag or before the closing </body>
tag.
Note
Injected snippets will also show up on the password
protection screen. This means you can verify that your analytics scripts are correctly configured without having to remove the password when your site is still under development.
In Site settings > Build & Deploy > Post processing, find the Snippet Injection section and select Add Snippet. Then give your script a name and paste the script body (including any <script>
tags, etc).
Explore snippet injection examples in our blog:
This feature is in BETA
.
If you’re using a single-page app for a site that’s not behind a login, SEO is an important concern.
Normally Google will penalize sites heavily for using “cloaking”, meaning showing different content to Google than to normal web visitors, but for single page apps they have an exception. When detecting a single page app their crawler will send an _escaped_fragment_
query parameter in the request, and the origin server can then choose to return a document that represents the content a user will actually get when the single page app is running.
Note
Google has marked their Standard for Ajax Crawling as deprecated. They’re still following the standard, but recommend that single page app authors just rely on Google’s built-in capacity for interpreting JavaScript applications. In our experience that’s often still not enough and prerendering is often still a necessity.
Netlify comes with built-in prerendering. You can enable it for your site at Site settings > Build & deploy > Post processing > Prerendering.
Our built-in prerendering service will cache prerendered pages for between 24 and 48 hours; this is not adjustable.
You can also use external services that can automate prerendering for you:
Prerender.io has an open-source version of their service that you can self-host.
We’ve taken great care to implement support for prerendering in the most efficient manner possible.
When a request hits one of our CDN servers, our CDN software determines if it’s a prerendering request from a crawler. If prerendering is enabled for your site, our cache servers will contact the prerendering backend straight from our CDN nodes instead of serving the normal cached request.
If you’ve worked with Netlify support to configure an external service and the external prerendering backend makes good use of HTTP caching headers like max-age, ETags or Last-Modified dates, prerendered responses will be cached sensibly on our CDN edge nodes. In our initial tests we’ve seen average response times of ~100 ms to crawlers, which is low enough that Google will still give your site a SEO boost for being fast.
Although form detection is enabled by default, you may want to disable it if your site doesn’t have forms or you’re not using Netlify to manage them. Disabling form detection will reduce post processing and may speed up deploys.
To disable form detection for your site, go to Site settings > Build & deploy > Post processing > Form detection, and select Edit Settings. Then clear the Run Form detection check box, and select Save.
Warning
Disabling form detection is intended only for sites that don’t use Netlify Forms. If your site does use Netlify Forms, we recommend removing forms from your site code or altering your code to handle submissions by other means before disabling form detection.
To enable form detection after disabling it, go to Site settings > Build & deploy > Post processing > Form detection, and select Edit Settings. Then select Run Form detection, and select Save.
At your next site deploy, Netlify build bots will parse HTML to detect forms, and verified form submissions will be available on Netlify.
All configuration options for Netlify CMS are specified in a config.yml
file, in the folder where you access the editor UI (usually in the /admin
folder).
Alternatively, you can specify a custom config file using a link tag:
This setting is required.
Note: no matter where you access Netlify CMS — whether running locally, in a staging environment, or in your published site — it will always fetch and commit files in your hosted repository (for example, on GitHub), on the branch you configured in your Netlify CMS config.yml file. This means that content fetched in the admin UI will match the content in the repository, which may be different from your locally running site. It also means that content saved using the admin UI will save directly to the hosted repository, even if you're running the UI locally or in staging.
By default, all entries created or edited in the Netlify CMS are committed directly into the main repository branch.
The publish_mode
option allows you to enable "Editorial Workflow" mode for more control over the content publishing phases. All unpublished entries will be arranged in a board according to their status, and they can be further reviewed and edited before going live.
You can enable the Editorial Workflow with the following line in your Netlify CMS config.yml
file:
From a technical perspective, the workflow translates editor UI actions into common Git commands:
Save draft
Commits to a new branch (named according to the pattern cms/collectionName/entrySlug
), and opens a pull request
Edit draft
Pushes another commit to the draft branch/pull request
Approve and publish draft
Merges pull request and deletes branch
Netlify CMS users can upload files to your repository using the Media Gallery. The following settings specify where these files are saved, and where they can be accessed on your built site.
This setting is required.
The media_folder
option specifies the folder path where uploaded files should be saved, relative to the base of the repo.
The public_folder
option specifies the folder path where the files uploaded by the media library will be accessed, relative to the base of the built site. For fields controlled by [file] or [image] widgets, the value of the field is generated by prepending this path to the filename of the selected file. Defaults to the value of media_folder
, with an opening /
if one is not already included.
Based on the settings above, if a user used an image widget field called avatar
to upload and select an image called philosoraptor.png
, the image would be saved to the repository at /static/images/uploads/philosoraptor.png
, and the avatar
field for the file would be set to /images/uploads/philosoraptor.png
.
This setting can be set to an absolute URL e.g. https://netlify.com/media
should you wish, however in general this is not advisable as content should have relative paths to other content.
Media library integrations are configured via the media_library
property, and its value should be an object with at least a name
property. A config
property can also be used for options that should be passed to the library in use.
Example:
The site_url
setting should provide a URL to your published site. May be used by the CMS for various functionality. Used together with a collection's preview_path
to create links to live content.
Example:
When the display_url
setting is specified, the CMS UI will include a link in the fixed area at the top of the page, allowing content authors to easily return to your main site. The text of the link consists of the URL without the protocol portion (e.g., your-site.com
).
Defaults to site_url
.
Example:
When the logo_url
setting is specified, the CMS UI will change the logo displayed at the top of the login page, allowing you to brand the CMS with your own logo. logo_url
is assumed to be a URL to an image file.
Example:
The CMS locale.
Defaults to en
.
Other languages than English must be registered manually.
Example
In your config.yml
:
And in your custom JavaScript code:
When a translation for the selected locale is missing the English one will be used.
When importing
netlify-cms
all locales are registered by default (so you only need to update yourconfig.yml
).
Example:
The search functionally requires loading all collection(s) entries, which can exhaust rate limits on large repositories. It can be disabled by setting the top level search
property to false
.
Defaults to true
Example:
The slug
option allows you to change how filenames for entries are created and sanitized. It also applies to filenames of media inserted via the default media library.
For modifying the actual data in a slug, see the per-collection option below.
slug
accepts multiple options:
encoding
clean_accents
: Set to true
to remove diacritics from slug characters before sanitizing. This is often helpful when using ascii
encoding.
sanitize_replacement
: The replacement string used to substitute unsafe characters, defaults to -
.
Example
This setting is required.
The collections
setting is the heart of your Netlify CMS configuration, as it determines how content types and editor fields in the UI generate files and content in your repository. Each collection you configure displays in the left sidebar of the Content page of the editor UI, in the order they are entered into your Netlify CMS config.yml
file.
collections
accepts a list of collection objects, each with the following options:
identifier_field
: see detailed description below
label
: label for the collection in the editor UI; defaults to the value of name
label_singular
: singular label for certain elements in the editor; defaults to the value of label
description
: optional text, displayed below the label when viewing a collection
create
: for folder
collections only; true
allows users to create new items in the collection; defaults to false
publish
: for publish_mode: editorial_workflow
only; false
hides UI publishing controls for a collection; defaults to true
hide
: true
hides a collection in the CMS UI; defaults to false
. Useful when using the relation widget to hide referenced collections.
delete
: false
prevents users from deleting items in a collection; defaults to true
extension
: see detailed description below
format
: see detailed description below
frontmatter_delimiter
: see detailed description under format
slug
: see detailed description below
preview_path
: see detailed description below
preview_path_date_field
: see detailed description below
fields
(required): see detailed description below
editor
: see detailed description below
summary
: see detailed description below
sortable_fields
: see detailed description below
view_filters
: see detailed description below
view_groups
: see detailed description below
The last few options require more detailed information.
identifier_field
Example
extension
and format
These settings determine how collection files are parsed and saved. Both are optional—Netlify CMS will attempt to infer your settings based on existing items in the collection. If your collection is empty, or you'd like more control, you can set these fields explicitly.
extension
determines the file extension searched for when finding existing entries in a folder collection and it determines the file extension used to save new collection items. It accepts the following values: yml
, yaml
, toml
, json
, md
, markdown
, html
.
You may also specify a custom extension
not included in the list above, as long as the collection files can be parsed and saved in one of the supported formats below.
format
determines how collection files are parsed and saved. It will be inferred if the extension
field or existing collection file extensions match one of the supported extensions above. It accepts the following values:
yml
or yaml
: parses and saves files as YAML-formatted data files; saves with yml
extension by default
toml
: parses and saves files as TOML-formatted data files; saves with toml
extension by default
json
: parses and saves files as JSON-formatted data files; saves with json
extension by default
frontmatter
: parses files and saves files with data frontmatter followed by an unparsed body text (edited using a body
field); saves with md
extension by default; default for collections that can't be inferred. Collections with frontmatter
format (either inferred or explicitly set) can parse files with frontmatter in YAML, TOML, or JSON format. However, they will be saved with YAML frontmatter.
yaml-frontmatter
: same as the frontmatter
format above, except frontmatter will be both parsed and saved only as YAML, followed by unparsed body text. The default delimiter for this option is ---
.
toml-frontmatter
: same as the frontmatter
format above, except frontmatter will be both parsed and saved only as TOML, followed by unparsed body text. The default delimiter for this option is +++
.
json-frontmatter
: same as the frontmatter
format above, except frontmatter will be both parsed and saved as JSON, followed by unparsed body text. The default delimiter for this option is {
}
.
frontmatter_delimiter
If you have an explicit frontmatter format declared, this option allows you to specify a custom delimiter like ~~~
. If you need different beginning and ending delimiters, you can use an array like ["(", ")"]
.
slug
The slug template can also reference a field value by name, eg. {{title}}
. If a field name conflicts with a built in template tag name - for example, if you have a field named slug
, and would like to reference that field via {{slug}}
, you can do so by adding the explicit fields.
prefix, eg. {{fields.slug}}
.
Available template tags:
Any field can be referenced by wrapping the field name in double curly braces, eg. {{author}}
{{slug}}
: a url-safe version of the title
field (or identifier field) for the file
{{year}}
: 4-digit year of the file creation date
{{month}}
: 2-digit month of the file creation date
{{day}}
: 2-digit day of the month of the file creation date
{{hour}}
: 2-digit hour of the file creation date
{{minute}}
: 2-digit minute of the file creation date
{{second}}
: 2-digit second of the file creation date
Example:
Example using field names:
Example using field name that conflicts with a template tag:
preview_path
A string representing the path where content in this collection can be found on the live site. This allows deploy preview links to direct to lead to a specific piece of content rather than the site root of a deploy preview.
Available template tags:
{{dirname}}
The path to the file's parent directory, relative to the collection's folder
.
{{filename}}
The file name without the extension part.
{{extension}}
The file extension.
Examples:
preview_path_date_field
The name of a date field for parsing date-based template tags from preview_path
. If this field is not provided and preview_path
contains date-based template tags (eg. {{year}}
), Netlify CMS will attempt to infer a usable date field by checking for common date field names, such as date
. If you find that you need to specify a date field, you can use preview_path_date_field
to tell Netlify CMS which field to use for preview path template tags.
Example:
fields
The fields
option maps editor UI widgets to field-value pairs in the saved file. The order of the fields in your Netlify CMS config.yml
file determines their order in the editor UI and in the saved file.
fields
accepts a list of collection objects, each with the following options:
label
: label for the field in the editor UI; defaults to the value of name
required
: specify as false
to make a field optional; defaults to true
comment
: optional comment to add before the field (only supported for yaml
)
In files with frontmatter, one field should be named body
. This special field represents the section of the document (usually markdown) that comes after the frontmatter.
Example:
editor
This setting changes options for the editor view of a collection or a file inside a files collection. It has one option so far:
preview
: set to false
to disable the preview pane for this collection or file; defaults to true
Example:
Note: Setting this as a top level configuration will set the default for all collections
summary
This setting allows the customization of the collection list view. Similar to the slug
field, a string with templates can be used to include values of different fields, e.g. {{title}}
. This option over-rides the default of title
field and identifier_field
.
Available template tags:
{{dirname}}
The path to the file's parent directory, relative to the collection's folder
.
{{filename}}
The file name without the extension part.
{{extension}}
The file extension.
{{commit_date}}
The file commit date on supported backends (git based backends).
{{commit_author}}
The file author date on supported backends (git based backends).
Example
sortable_fields
An optional list of sort fields to show in the UI.
Defaults to inferring title
, date
, author
and description
fields and will also show Update On
sort field in git based backends.
When author
field can't be inferred commit author will be used.
Example
view_filters
An optional list of predefined view filters to show in the UI.
Defaults to an empty list.
Example
view_groups
An optional list of predefined view groups to show in the UI.
Defaults to an empty list.
Example
GoCommerce is a small Go based API for e-commerce sites that handles orders and payments. It integrates with Stripe for payments and will support international pricing and VAT verification.
A tiny API Gateway based on JSON Web Tokens. Gotiator can handle simple API proxying with signing for single page apps that already use JWTs for authentication.
Lodash is a modern JavaScript utility library with more than half a billion downloads a year.
Yarn is a fast, reliable, and secure dependency manager for node from the engineers at Facebook, Google and Microsoft.
Serverless is an application framework to easily build serverless architectures on AWS Lambda & more.
Framer.js is the most popular OS code design project out there.
Kubernetes is an open-source system for automating deployment, scaling, and management of containerized applications.
Most popular static site generator, and first modern static site generator as well.
A toolkit for rapid advanced front-end development.
A Fast and Flexible Static Site Generator built with love in Golang.
A fast, scalable and extensible caching proxy server.
Hand-crafted frontend development.
The open-source application container engine.
A simple, high performance open source messaging system for cloud native applications, IoT messaging, and microservices architectures.
Go bindings for libgit2.
Ruby toolkit for the GitHub API.
Idiomatic Ruby client for Google Cloud Platform services.
An ACME-based CA, written in Go.
Let's Encrypt client and ACME library written in Go.
You can find a deploy summary on the detail page of any successful deploy, right above the . It allows you to quickly identify your deploy status and refer to the details in the log based on different types of information.
This summary indicates how many files have been uploaded to our CDN. It also indicates the status of site , , and included in the deploy. It also indicates whether your site contains content served over insecure HTTP, known as .
When you have enabled, the summary will inform you if the files to upload have already been uploaded by a previous deploy with the same commits. Netlify’s deployment infrastructure knows how to avoid uploading the same file twice, even between different deploys, so we get your changes ready without duplicating content. You can read more about how this works in this article about our .
If the summary continually indicates that many more files were uploaded than you were expecting, your site may be taking longer to deploy than it needs to. Visit our Forums for a verified Support Guide on to learn about why this might be happening and get advice about what you can do to reduce the number of files uploaded each time in order to speed up your deploys.
For any successful deploy, highlights from the deploy log will be included in the . For failed deploys, visit our Forums for a verified Support Guide on .
Deploy logs for a site linked to a private repo are available to all site members. For a site linked to a public repo, you can control to determine the privacy level.
Deploy Preview: a deploy generated from a pull request or merge request, building the site as it would be if the proposed changes were merged. Deploy Previews are published to a URL which has the prefix deploy-preview
followed by the identifier number of the pull request or merge request. For example, a Deploy Preview for pull/merge request #42 will deploy to deploy-preview-42--yoursitename.netlify.app
. For more information, visit the docs on .
By default, Netlify automatically builds Deploy Previews for GitHub pull requests and GitLab merge requests when the base/target branch is your production branch. If you enable branch deploys for some or all of your other branches, we’ll also build Deploy Previews for pull/merge requests against those branches. Collaboration tools available in the are enabled by default for Deploy Previews.
Netlify automatically ensures that only your currently published production deploy and most recent branch deploys can be indexed by search engines. Requests to Deploy Previews, unpublished production deploys, and old branch deploys will have an X-Robots-Tag: noindex
header included in the response. Depending on how you use branch deploys, you may want to prevent even your most recent branch deploys from being indexed by search engines. You can do so by configuring in your branch.
Deploy contexts give you the flexibility to depending on the context they are going to be deployed to.
Deploy contexts allow you to override options from your site’s settings including the build command, the environment variables added to the build, , and more.
Visit our docs on to learn more about what you can do with deploy contexts.
Continuous deployment works by and keeping the two in sync.
It works for plain static sites, but it’s even more powerful when you’re using a or a frontend build tool like , , or .
Edit content without code by using a static site CMS,
You can use the CLI to for a Git repository. You can also use the CLI to without continuous deployment.
You can create a new site by dragging a project folder to the deploy dropzone in or at the bottom of Sites. If your site is not connected to a Git repository, you can deploy your site manually by using the deploy dropzone at the bottom of the Deploys page. For teams without sites, a deploy dropzone will also appear in Team overview.
You can use the to create deploys manually using a file digest or a zip file.
This is an example of how it looks:
You can provide a set of default values for your template directly in the template’s git repository. Create a netlify.toml
file in the root of the repository, if you don’t have it already. We’ll read the information from there. This file can also be used to set options for continuous deployment, you can read more about it in the .
give you unique URLs you can use to trigger new builds and deploys.
Netlify is available on Zapier, where you can connect Netlify with over 1,000 other applications. You can use Zapier “Zaps” to start a new deploy of your site in response to a trigger from another service. You can , or use one of the templates below to get started:Start deploys of Netlify sites dailyStart Netlify deploys when you send new TweetsStart Netlify site deploys with the push of a Flic buttonSee more integrations powered by
Netlify builds Deploy Previews by default for GitHub pull requests and GitLab merge requests. You can control whether or not Deploy Previews are generated for pull/merge requests. For more information, visit the docs.
For successful deploys, your pull/merge request comments include a link to the Deploy Preview by default. You can add, remove, or edit these notifications. Visit the doc for more information.
You can share this URL with your team to collaborate and .
GitHub app permissions. If you’re using GitHub, verify that the Netlify GitHub app is .
Team access. Stakeholders must be signed into Netlify and to a team to use the collaboration tools. To request access to collaborate, select the Team Members tab and select Request to join team.
(may not be available on all )
For more information on team member permissions, check the documentation.
To find details about the deploy, open the Deploy Logs tab of the Netlify Drawer. Visit our for more information.
You can access serverless function logs by opening the Function logs tab in the Netlify Drawer and selecting a function to check out its latest log contents for the current session. Visit our for more information.
When someone shares feedback through a collaborative Deploy Preview, you can access metadata about the browser the comment author used. You can also replicate their browser environment for testing and QA through a built-in integration with .
The BrowserStack service provides a free for users who sign up from Netlify. An option to upgrade is available in BrowserStack once the allotment is finished.
This section provides troubleshooting tips for using and accessing collaborative Deploy Previews. Make sure you have reviewed the and for collaborative Deploy Previews before you begin.
If you have additional concerns that aren’t answered here, you can visit our to ask questions and find more information.
The Netlify Drawer also might not appear if your site’s include the following Content Security Policy (CSP) directives:
Edit the of the user to change the Full name and Public avatar. We recommend naming the user Netlify
and using the Netlify logo as the avatar to help associate unauthenticated comments with Netlify.
Generate a with an api
scope, and copy the token to your clipboard.
You can also open a if you need to preview a deploy but don’t want to access any of the collaboration features. Both links are available in the Netlify Drawer under Settings. The branch deploy link is also available on your site’s Deploys page in the Netlify UI, while the deploy permalink is available on the deploy details page.
Snippet injection - Analytics or other scripts can be added to the HTML of your site using .
Asset optimization - You can rewrite link URLs to pretty URLs, bundle and minify CSS and JS, and compress images. These options can be controlled via as well as in Site settings.
Prerendering - To allow search engines and social networks to crawl the pages rendered by your app, you can enable .
Form detection - By default, Netlify scans new and updated HTML files to detect forms and set them up for receiving submissions. You can disable to speed up deploys if you’re not using Forms.
You can use the to get snippets, add snippets, and more.
Google, Bing, Yandex and other search engines and crawlers support Google’s .
This feature may not be available on all .
If you want to use an external service, send us an email at to let us know which service you’re using and its API token, and we’ll get you set up.
Visit our Support Forums to ask questions about .
Netlify’s serverless form handling allows you to manage without extra API calls or additional JavaScript. The built-in form detection feature allows our build bots to automatically parse your HTML at deploy time.
At your next site deploy, Netlify build bots will no longer parse new or updated HTML files for forms. handling will be deactivated for any new or updated forms.
To see working configuration examples, you can or check out the . (No login required: click the login button and the CMS will open.) You can refer to the demo to see how each option was configured.
You can find details about all configuration options below. Note that allows lists and objects to be written in block or inline style, and the code samples below include a mix of both.
The backend
option specifies how to access the content for your site, including authentication. Full details and code samples can be found in .
Note: Editorial workflow works with GitHub repositories, and support for GitLab and Bitbucket is .
can be disabled by setting show_preview_links
to false
.
unicode
(default): Sanitize filenames (slugs) according to and the . This spec allows non-ASCII (or non-Latin) characters to exist in URLs.
ascii
: Sanitize filenames (slugs) according to . The only allowed characters are (0-9, a-z, A-Z, _
, -
, ~
).
name
(required): unique identifier for the collection, used as the key when referenced in other contexts (like the )
files
or folder
(requires one of these): specifies the collection type and location; details in
filter
: optional filter for folder
collections; details in
Netlify CMS expects every entry to provide a field named "title"
that serves as an identifier for the entry. The identifier field serves as an entry's title when viewing a list of entries, and is used in creation. If you would like to use a field other than "title"
as the identifier, you can set identifier_field
to the name of the other field.
For folder collections where users can create new items, the slug
option specifies a template for generating new filenames based on a file's creation date and title
field. (This means that all collections with create: true
must have a title
field (a different field can be used via ).
Template tags are the same as those for , with the following exceptions:
{{slug}}
is the entire slug for the current entry (not just the url-safe identifier, as is the case with )
The date based template tags, such as {{year}}
and {{month}}
, are pulled from a date field in your entry, and may require additional configuration - see for details. If a date template tag is used and no date can be found, preview_path
will be ignored.
name
(required): unique identifier for the field, used as the key when referenced in other contexts (like the )
widget
: defines editor UI and inputs and file field data types; details in
default
: specify a default value for a field; available for most widget types (see for details on each widget type). Please note that field default value only works for folder collection type.
pattern
: add field validation by specifying a list with a regex pattern and an error message; more extensive validation can be achieved with
Template tags are the same as those for , with the following additions: