You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the button below to build and deploy your own copy of the repository:
After clicking that button, you’ll authenticate with GitHub and choose a repository name. Netlify will then automatically create a repository in your GitHub account with a copy of the files from this repository. Next, it will build and deploy the new site on Netlify, bringing you to the site dashboard when the build is complete. Next, you’ll need to set up Netlify’s Identity service to authorize users to log in to the CMS.
Access Locally
Pulldown a local copy of the Github repository Netlify created for you, with the name you specified in the previous step
$ git clone https://github.com/[GITHUB_USERNAME]/[REPO_NAME].git
$ cd [REPO_NAME]
$ yarn
$ netlify dev # or ntl dev
This uses Netlify Dev CLI feature to serve any functions you have in the lambda folder.
To test the CMS locally, you'll need run a production build of the site:
Build the static files into the public folder, turns lambda functions into a deployable form.
Usage
$ yarn build
clean
Runs gatsby clean command.
Usage
yarn clean
netlify dev
Starts the netlify dev environment, including the gatsby dev environment.
For more info check the Netlify Dev Docs
netlify dev
develop or start
Runs the clean script and starts the gatsby develop server using the command gatsby develop. We recomend using this command when you don't need Netlify specific features
Usage
yarn develop
format
Formats code and docs according to our style guidelines using prettier