Setting up Environment for start of the school year
- Go to github.com
- Click on sign up
- Type username
- Type Email
- Password REMEMBER YOUR PASSWORD
- Choose Unlimited Plan
- Open Terminal
- Paste the text below, substituting in your GitHub email address.
ssh-keygen -t rsa -b 4096 -C "[email protected]"
- When you're prompted to "Enter a file in which to save the key," press Enter. This accepts the default file location.
Enter a file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter]
- At the prompt, type a secure passphrase. For more information, see "Working with SSH key passphrases".
Enter passphrase (empty for no passphrase): [Type a passphrase]
Enter same passphrase again: [Type passphrase again]
** YOUR PASSPHRASE WILL BE HIDDEN WHILE TYPING **
- Start the ssh-agent in the background.
eval $(ssh-agent -s)
- On Mac
ssh-add -K ~/.ssh/id_rsa
- On Windows
ssh-add ~/.ssh/id_rsa
https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/
- Install Git https://git-scm.com/downloads
- $ git config --global user.name "Mona Lisa"
- $ git config --global user.email "[email protected]"
- Install Windows or Mac https://code.visualstudio.com/
- Open VScode from terminal
- Command + shift + p
- Install code command path
- Set up git-bash with integrated terminal in VScode
- Go into settings and search for "terminal.integrated.shell.windows"
- "terminal.integrated.shell.windows": "C:\Program Files\Git\bin\bash.exe" OR
- Type
bash
in your vs terminal window - A pop-up will ask if you'd like to customize your intergrated terminal
- Select
git bash
terminal
- Install node https://nodejs.org/en/download/
- Npm install -g live-server