Onboarding Checklist
Checklist
Prerequisites
homebrew/WSL2
Checklist
.env
files from your team leadNode.js, nvm, npm
Explanation of node.js
“Node.js is an open-source, cross-platform, JavaScript runtime environment that executes JavaScript code outside of a browser” (Node.js org, 2020)
Explanation of nvm and npm
“NVM is a node.js version manager. It provides easy installation, switching between versions and retains globally installed packages for each version. NPM is a package manager, which help you install libraries, plugins, frameworks and applications.”https://medium.com/@hanke.liu/understand-node-js-npm-and-nvm-efc61dfd7ff8#:~:text=NVM%20is%20a%20node.,%2C%20plugins%2C%20frameworks%20and%20applications.
Installation
Setting up ssh key
# Run this command for a projects specific SSH Key
ssh-keygen
It will prompt you to enter the file where you want to save the key (this is equivalent to naming your ssh key), I personally prefer to use something like id_rsa_CSE
. If you have multiple ssh keys, which most people would have i.e. one for gitlab (1531), you can create a SSH Config file
# Example SSH Config saved in ~/. ssh/config
Host github.com
Hostname github.com
PreferredAuthentications publickey
IdentitiesOnly yes
IdentityFile ~/.ssh/id_rsa_CSE
Now navigate to the Settings tab inside github, and go to the SSH and GPG keys tab, and add a new SSH Key. To get the ssh key there are a couple of commands you can run:
cat ~/.ssh/id_rsa_CSE.pub | pbcopy
(OSX)cat ~/.ssh/id_rsa_CSE.pub | clip.exe
(WSL2)or you can just run
cat ~/.ssh/id_rsa_CSE.pub
and copy the contents manually, However, it is very easy to mess up the copy with missing characters/extra spaces so beware!
Docker desktop
What is Docker?
https://www.youtube.com/watch?v=rOTqprHv1YE
Installation
Follow the installation guide to install docker desktop Get Docker
Disclaimer: You can only run your docker application in the CLI when the docker desktop is open, and are signed in. Please refer the instructions in the repo https://github.com/csesoc/cms.csesoc.unsw.edu.au/blob/main/README.md to run the docker application.
Figma (mainly for FE team)
What is Figma?
Figma is a collaboration tool for interface design that offers a variety of prototyping features.
Installation
Create an account on Figma Figma: The Collaborative Interface Design Tool
Apply for education status https://www.figma.com/education/apply/
Ask a team lead for the invite to the websites group
Related content
UNSW CSESoc