JumboCode 2021-2022 project
- Project Manager: Adam Peters
- Designer: Cynthia Jelke
- Developer: Archit Jain
- Developer: Darya Clark
- Developer: Eli Intriligator
- Developer: Emma Paterson
- Developer: Julia Zelevinsky
- Developer: Kabir Pamnani
- Developer: Mateo Hernandez Idrovo
- Developer: Matt Ung
- Developer: Finn Tekverk
- Developer: Matthew Vivian
- If you don't have npm (node package manager) installed, follow this tutorial: https://docs.npmjs.com/getting-started
- If you don't have git installed, follow this tutorial: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git. GitHub recently changed how you log in via command line, so if you get an error asking for a "Personal Access Token," follow this tutorial. Note that the token you create will be your new password when you log in via terminal, so do not lose it.
- If you don't have VScode, download VsCode here and follow this tutorial to set up auto-format
cd <PATH TO DIRECTORY YOU WANT YOUR CODE TO BE IN>
in your terminalgit clone https://github.com/JumboCode/BergenFamilyCenter.git
--> creates a 'Bergen Family Center' directorycd BergenFamilyCenter
- (optional) type
code .
in terminal to open VScode (Note: you may need to set up the path, which you can find a tutorial for here) - run
npm install
to install all packages
cd <PATH TO 'BergenFamilyCenter' DIRECTORY>
- run
npm run dev
- Open a browser and go to http://localhost:3000
git init
--> creates a git repositorygit pull
--> pulls changesgit status
--> check the current statusgit checkout -b <BRANCH NAME>
--> creates a new branch and switches to that branchgit checkout <BRANCH NAME>
--> switches to that branchgit add .
--> adds all changed files for comittinggit commit -m '<MESSAGE>'
commit your changed files with the specified messagegit push -u origin <BRANCH NAME>
push your changes to github