Skip to content

freddyloboq/4geeks-clase5

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Making a website as a team (Git collabotation)

Practice your skills in GIT while developing a typical website.

Each student works on a different file, for a different part of the website and the most senior can work as Team Leader (for integration and deployment). The Html-Template-Engine library will take care of putting all the pieces together.

📝 Instructions

  1. The Team Leader should fork this repository on github.com and invite other collaborators to the repo.

  2. Pick what website you want to build.

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

  4. When each team member finishes, they have to commit and push to the forked repository.

💻 Run the website

In order to watch the website live run the following command:

$ npx browser-sync start -s -w

Deploy the website

Use Vercel, Netlify or Github pages to deploy the website to the team URL (for example: https://mysuperteam.zeit.sh).

Delivery

Everyone delivers the same repo as solution.

Complementary info

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

create a new repository on the command line

echo "# 4geeks-clase5" >> README.md git init git add README.md git commit -m "first commit" git branch -M master git remote add origin https://github.com/mortegac/4geeks-clase5.git git push -u origin master

push an existing repository from the command line

git remote add origin https://github.com/mortegac/4geeks-clase5.git git branch -M master git push -u origin master

About

Clase de Git Colaborativo

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 80.6%
  • JavaScript 19.2%
  • CSS 0.2%