⚠️ Before using this repo, make sure this is indeed the repo corresponding to your tutorial group
- Open your terminal and type the following
git config --global user.name "<write your github username>"
git config --global user.email "<write your github email>"
- Navigate using your terminal or git bash to the desktop
- Clone this repo by typing
git clone https://github.com/SE-GUC/<Task1-X-Y>.git
X={BI, ENG} and Y={your tutorial} - You should now have a folder containing the example code
- Open server/index.js
- Add your name and id (as a string) to the students array
- Navigate to using your terminal to server/ folder and type
npm i
npm i
will install some packages and dependencies so make sure you have an internet connection
- Write
node index.js
to run the server - The server should start running locally on port 3000
- Open your browser and go to this url
localhost:3000
- You should see one link called
Students
, press this link to go to the students' page - At this point, you should see your name in the list of students
- Now, come back to this github page and create a pull request adding your name and id to this repo's index.js file
- To make sure everything is correct, you should see that your pull request is changing 1 file (index.js) and that you added 1 line which is simply your name and id in the array
- Your pull request and its changes are the proof that you have successfully learned how things work so far!