If you are using the latest MacOS (Monterey) please note that you need to be running the latest version of the Discord desktop app for screen sharing to function. If you encounter problems, you can use Discord in a Safari browser.
Pro-tip: There's a copy button hidden in the top-right of each code block for easy copy/pasting.
This guide is mostly running commands in the Terminal app.
MacOS ships with ZSH, to double check that you have it installed run this command in your terminal
which zsh
It should log /bin/zsh
but anything except zsh not found
is great
Run this command to set zsh
as your default shell:
chsh -s $(which zsh)
Close and open a new terminal and if you are prompted to make a choice, choose q
.
We're going to install oh-my-zsh to make your terminal/shell experience a bit more pleasant.
Oh My Zsh is a delightful, open source, community-driven framework for managing your Zsh configuration. It comes bundled with thousands of helpful functions, helpers, plugins, themes, and a few things that make you shout...
Copy this command into your terminal
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Zsh installs a command omz
to configure itself. To set your theme to "bira" run:
omz theme set bira
Close your terminal and open a new one.
Running this command will show a system prompt, asking you to confirm in order to install the command-line developer tools:
xcode-select --install
We need python installed and Mac OS ships with python3
Confirm that python is installed with:
which python3
This should log something like /bin/python3
, but anything other than python3 not found
is great.
Running this command will configure NPM to use your python3
for builds
cat << EOF >> ~/.npmrc
python=$(which python3)
EOF
Install Visual Studio Code if it isn't already installed
https://code.visualstudio.com/download
In your terminal, open VS Code with:
code .
If you see a 'command not found: code' error, try opening VS code by clicking on the Visual Studio Code program in your Applications folder and then open the command pallette (command + shift + p) and run Shell Command: install 'code' command in PATH
.
Install the following VS Code extensions
- ESLint
- Prettier
- Live Share
- vscode-icons (optional, but pretty 😉)
- GitLens (optional)
In your terminal, run:
code --list-extensions
You should see the IDs of each of these extensions logged like this:
dbaeumer.vscode-eslint
esbenp.prettier-vscode
ms-vsliveshare.vsliveshare
vscode-icons-team.vscode-icons
eamodio.gitlens
In VS Code:
- click the Settings cog button in the bottom left and open the Command Palette.
- Type
settings.json
into the little search box that appears at the top of your scree - click on the
Preferences: Open Settings (JSON)
option to open yoursettings.json
config file.
Paste these contents inside the curly brackets:
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs":"active",
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.semi": false,
"prettier.singleQuote": true
Note that each entry in your settings.json
should end in a comma except for the last one, so if there are some existing entries you'll need to add a comma before pasting the above lines
Run this command in your terminal:
git config --global core.editor "code --wait"
NVM is a tool to install and manage NodeJS versions.
First, check if you have installed nvm before
which nvm
If you see a lot of text then you've already installed NVM and can go to section 4.5, if you see a "not found" message then keep reading.
Next, check if you have node installed
which node
If it logs "node not found", that's perfect. We want NVM to manage node and npm on our dev machine.
If it logs anything else e.g. /usr/bin/node
, you need to uninstall node, this differs depending on
how you installed it. Contact a facilitator if you get stuck
Enter this command into your terminal to download and install nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
This command will initialise NVM when you open a terminal
cat << 'EOF' >> ~/.zshrc
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
EOF
Now run this command to reload your ~/.zshrc
omz reload
Install the latest "Long Term Support" (i.e. very stable) version of node
Run this command in your terminal:
nvm install --lts
Then, also in your terminal, run:
nvm alias default node
To confirm, run this command. We're expecting something in the v16.x
range
nvm current
sqlite3
is a database package that we use a lot during bootcamp. At this point
you should be set up with everything you need to build it.
Run this command to confirm:
npx --yes @donothing/can-u-build-sqlite3
If it succeeds it will log Everything looks good
We're going to clone a repo to make sure everything is working fine.
We'll start by creating a directory to keep all your repos in (it doesn't really matter what you call it)
mkdir ~/devacademy
and then change directory into it:
cd ~/devacademy
For these next two commands, replace the name and email with your own details
You'll need to configure git to know your name...
git config --global user.name "Firstname Lastname"
... and your email address. These will be recorded as the author in commits you make
git config --global user.email "[email protected]"
If you prefer git to save your credentials instead of entering them each time, you can configure git to store them
git config --global credential.helper store
Now go to your github tokens page and create a new token
- It can be called anything, but I use something like "home laptop"
- It needs the "repo" permissions so make sure to check that checkbox
- Set the expiration to 90 days, so that it lasts all bootcamp
- make sure you copy the token before you close that tab
From your Ubuntu terminal, clone down javascript-carnival
git clone https://github.com/dev-academy-foundations/javascript-carnival
Because we are using https
, github will ask for your username and password.
- the username is your github username
- the password is your github token, so paste it in with a right-click when prompted
This should be the last time
Now we're going change directory into the new directory:
cd javascript-carnival
and open Visual Studio Code
code .
Now you should be looking at the javascript-carnival exercise in your editor.
Run this command in your terminal:
open .
Finder will open that directory
Run this checklist to double-check everything:
npx --yes @donothing/checklist
You should see something like this (all ticks, no crosses, 0/x failed)
Shell environment:
[ ✓ ] darwin
[ ✓ ] $SHELL = /bin/zsh
[ ✓ ] ZSH version = zsh 5.8 (x86_64-apple-darwin21.0)
Node setup:
[ ✓ ] /Users/gerard/.nvm exists
[ ✓ ] NVM config found in ~/.zshrc
[ ✓ ] Node version = v16.13.2
[ ✓ ] NPM version = 8.5.0
Visual studio code:
[ ✓ ] Visual Studio Code version = 1.65.2
[ ✓ ] Git editor is code --wait
[ ✓ ] VSCode extension 'dbaeumer.vscode-eslint' installed
[ ✓ ] VSCode extension 'esbenp.prettier-vscode' installed
[ ✓ ] VSCode extension 'ms-vsliveshare.vsliveshare' installed
[ ✓ ] VSCode extension 'eamodio.gitlens' installed
[ ✓ ] VSCode extension 'vscode-icons-team.vscode-icons' installed
Build requirements (for node-gyp):
[ ✓ ] Git version = git version 2.32.0 (Apple Git-132)
[ ✓ ] Found cc = /usr/bin/cc
[ ✓ ] Found make = /usr/bin/make
[ ✓ ] Found python version: Python 3.8.9 at /usr/bin/python3
RESULT: (0/21) checks failed