-
Install NVM or NVM-Windows.
- NVM-Windows
nvm install latest - NVM manual
- NVM-Windows
-
Set node version:
- If NVM -
nvm use - If NVM-Windows -
nvm use [insert version of latest - can be found with 'nvm list']
- If NVM -
-
Install Vue:
-
Install VS Code. Setup VS Code extensions:
- Vetur
- ESLint
- Prettier
-
Open one terminal, navigate to the client directory
cd clientin your terminal and run:
npm install
npm run serve
- Open another terminal,
cd client, and runjson-server --watch membersDb.json - Open your browser and navigate to
localhost:8080/.
- Install git.
- Open your terminal and enter... -
git config --global user.name "Your name here"-git config --global user.email "[email protected]
Replace the quotation sections with your name and email address respectively, without the quotes. Ensure that the email address is the same as your Github account. - Navigate to your desired workspace in the terminal.
- Enter
git clone https://github.com/codesydney/codesydney.git. - Navigate to the root folder
cd codesydney/.
Reference: git - the simple guide
- Create a new branch for the issue you are working on.
- Make changes to you code.
- Add the changes to the Index and commit the changes.
- Ensure you include a descriptive, yet concise, description of the changes.
- Repeat until your issue is finished.
- Push to the Github repository
git push origin "my_branch_name".- Becareful not to push to master.
- Open Github in your browser and submit a new pull request.
