Homework setup
There's a couple things you should set up before the workshop. Experience has shown setting this up during the workshop distracts from exercises.
Create a Netlify account go to netlify.com and follow their signup instructions. You shouldn't need to pay.
- Install netlify cli Netlify's CLI tool is great. Install it with
npm i -g netlify-clioryarn global add netlify-cli
- Install netlify cli Netlify's CLI tool is great. Install it with
Create a Vercel account go to vercel.com and follow their signup instructions. You shouldn't need to pay.
- Install vercel cli Vercel has a fantastic CLI tool. Install it with
npm i -g verceloryarn global add vercel
- Install vercel cli Vercel has a fantastic CLI tool. Install it with
Install gatsby-cli with
npm i -g gatsby-clioryarn global add gatsby-cli
Other housekeeping
After you've created your accounts and configured the CLI tools, make sure your computer can do the following:
JavaScript development. Make sure you can run
create-react-app something. If that works, your computer has all pre-requisites installed.Git. Just in case you don't have it yet, make sure your computer works with git. We've had folks switch from MacOS to Windows just before the workshop before and then nothing worked. No fun.
A text editor. Have an editor set up for JavaScript development. I like VSCode, but anything should do.
I'll be using a Mac and giving instrutions using the terminal. As long as you can follow NPM install and Git instructions, stick with the tools you're used to.