UARK 2020 Fall Hackathon Project. Tutor matching app thingo.
- Download and install
node.jsandnpm(I don't remember the installation process) - Clone the repo through the GUI or with
git clone https://github.com/Willard21/Coronacademy.git - Open your command line and navigate to the project directory with
cd path/to/directory(Check your Documents or home folder if you're not sure where it is) - Run
npm install - Run
npm start - Open your browser and go to http://localhost:8080/ - You should see the
index.htmlfile being displayed.
(Anything where I say git , just look for buttons with the same name)
- Make sure you're on the master branch and it's up to date with
git checkout masterthengit pull - Create a new branch through your local Git GUI or with
git checkout -b YourBranchName(the-bis only needed if it's a new branch) - If your working branch isn't brand new, merge master into it to sync everyone else's changes to your branch with
git merge master - Now make your changes in the repo file. Use whatever editor you prefer (Visual Studio Code is my favorite for JS).
- To share your changes with everyone else, do
git push. You may have to push to upstream or something like that first. Just check for GUI prompts.