Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 1.49 KB

File metadata and controls

47 lines (28 loc) · 1.49 KB

This repository will hold general information about the IT Team

As discussed in our last meeting, there will be a division in tasks for every member. We will split the task between database, frontend and backend developent so that we can create a whole app later on.

To start with, and as a practice in git - edit this README file to write which group you belong: Below, you can find inforamtion and how/where to start in learning your specific field, do the exercises, some research and if you find anything interesting, feel free to add them here :)

  • Example : Firstname Lastname, firstname2 lastname2, etc.
  • DATABASE : Benjamin,
  • FRONTEND : Alexandre Rouvinez,
  • BACKEND :

Database: codecademy

Frontend: codecademy

Backend : codecademy

The one to two weeks should be good enough to finish these.

The content of the Intensive classes are also available to you guys - check these out: https://www.codecademy.com/catalog/subject/web-development. I will put up a list of what to learn in this document.


How to Use Git

Git is a programme that allows us to easily manage our code.

  1. If you have a new repository

git clone <repository name>

  1. If you want to update your repository

git pull

  1. If you want to submit your changes - run the following code
git add .
git commit -m "your message"`
git push`

More exlpanations here