# Netlify

### Trigger a build of your website on Netlify directly from the DatoCMS UI, and get a notification of the status of the build when it completes

Netlify is a very interesting service that combines a continuous deployment system with a powerful CDN optimized to host static websites. It's probably the easiest solution out there if you're exploring the world of static websites for the first time; furthermore, their free plan is perfectly compatible with DatoCMS and allows you to publish high-performant static websites.

**Warning:** this guide assumes you have a working static website project on your machine integrated with DatoCMS. If it's not the case, you can head over the [main documentation](https://www.datocms.com/docs/general-concepts.md) to see how to properly configure the DatoCMS administrative area and how to integrate with your favorite static website generator.

### Step 1: create your Git repository

Create a new repository on [GitHub](https://github.com/new). To avoid errors, do not initialize the new repository with README, license, or gitignore files. You can add these files after your project has been pushed to GitHub.

Terminal window

```bash
$ git init
$ git add .
```

Commit the files that you've staged in your local repository.

Terminal window

```bash
$ git commit -m 'First commit'
```

At the top of your GitHub repository's Quick Setup page, click the clipboard icon to copy the remote repository URL. In Terminal, add the URL for the remote repository where your local repository will be pushed.

Terminal window

```bash
$ git remote add origin YOUR_GITHUB_REPOSITORY_URL
```

Now, it's time to push the changes in your local repository to GitHub.

Terminal window

```bash
git push -u origin master
```

Now that your project is up and running on GitHub, let's connect it to Netlify.

### Step 2: connect your repo to Netlify

Creating a new site on Netlify is simple. Once you've logged in, you'll be taken to [https://app.netlify.com/sites](https://app.netlify.com/sites). If you're just starting out, there's only one option:

(Image content)

Clicking "New Site" brings you to this screen:

(Image content)

Once you click on the "Link to GitHub" button, it will present the following screen:

(Image content)

Click the "Authorize Application" button to let Netlify read the list of your Github repositories. Like it says in the image above, Netlify doesn't store your GitHub access token on their servers. Once you've connected Netlify and GitHub, you can see a list of your Git repos. Select the one we just created:

(Image content)

The next screen is extremely important: it's where you instruct Netlify to build your static website:

(Image content)

Depending on your static generator the **Build command** and **Publish directory** field need to be filled with different values. In the *Site Settings*, make sure you add your DatoCMS read-only token as a `DATO_API_TOKEN` environment variable:

(Image content)

You can find your API token in the *Settings \> API tokens* section:

(Image content)

Once everything is ready, press the *Build your site* button. Netlify will run the build process for the first time and you can watch the progress of the operation.

(Image content)

Once the build process if finished, Netlify will publish under a temporary domain the directory specified earlier. Now everytime you push some change to GitHub, Netlify will repeat the build process and deploy a new version of the site.

(Image content)

### Step 3: connect Netlify to DatoCMS

There's only one last step needed: connecting DatoCMS to Netlify, so that everytime one of your editors press the *Publish changes* button in your administrative area, a new build process (thus a new publication of the final website) gets triggered.

(Video content)

Let's go through the process step-by-step. First, go to the *Settings \> Environments*, click on the plus icon and select *Netlify* as build method. The Netlify authorization window should pop up:

(Image content)

On the new window that pops up, click on "Grant Access" to allow DatoCMS to setup the auto-deploy meachanism and select the Netlify site that you want to link to DatoCMS, so that a number of bi-directional hooks willl be configured:

(Image content)

You can specify which branch of your Git repository you want to link and build with the deployment environment that you are creating:

(Image content)

When everything is done, confirm the integration pressing the **Save Settings** button.