Mello is a web-based application designed to revolutionize the way users organize and break tasks down into sizeable time chunks.
This project is associated with The University of Auckland SOFTENG 701.
CI | Status |
---|---|
Tests | |
End to End Tests | |
ESLint and Prettier | |
Build and Deploy |
- Go to the shared repository, and click the 'Fork' button in the top right corner
- Click on your username to create your own copy of the shared repository. This is where you will collate your work
- Open a command prompt window on your computer, and navigate to the directory you want to store the project
- In your forked repository, click the green 'Code' button, and copy the github url in it
- In your command prompt, execute
git clone [copied-url]
. This should download your forked repository - Run the command
cd assignment1
to go into the assignment folder - Run the command
git remote add origin [copied-url]
to make sure your project is linked to your forked repository - Go to the shared repository, click the green 'Code' button, and copy the link
- In your command prompt, run
git remote add upstream [new-copied-url]
to link your project to the shared repository - Run
npm install
to make sure your project is up to date