/05_Portfolio-and-Git-Class

Project aimed at helping students learn how to use Git in a real-world project, while also providing training in HTML, CSS, and Bootstrap, all integrated together.

Primary LanguageHTML

Git Collabotarive

Use this project to practice your students skills in GIT while developing a porfolio website.

Each student works on a different file, for a different part of the website and the teacher can run the entire website. The Html-Template-Engine library will take care of putting all the pieces together.

Instructions

  1. As a teacher, please create a new repository in github.com and invite your students.

  2. Then, clone this repository and change the remote to your new repository

$ git clone git@github.com:breatheco-de/exercise-git-collabration.git
$ git remote set-url <the new repository>
  1. Push everything to the new respository you have just created.
$ git push origin master

Now your students can download your repository and collaborate with you

  1. Pick what website you want to build with your students.

  2. Each student will have to clone your new repository and develop one piece of the website you have chosee, each project is divided in pieces inside its templates/ directory.

  3. When students finish, they have to commit and push to your repository.

git setup may required

  1. If not done so yet, guide students running the following git configurations:
git config --global user.email "you@example.com"
git config --global user.name "Your Name"

Additional complementary info

The Html-Template-Engine library is being used as template engine for building the landing page.