This repository holds the contents of the Master in Fullstack Web. This repository uses Lerna to organize the lessons and each module is it's own package.
- Install NodeJS.
- Clone project.
- Open terminal.
cd
into the project's directory.- Install dependencies with:
npm i
. - Run bootstrap with:
npm run bootstrap
.
- Fork this project.
- Create a branch from
main
where you'll work,dev
for example. - Track remote branch:
git remote add upstream https://github.com/cice-classroom/cice-playground.git
. - To update changes from upstream:
git pull upstream main
. - To propose changes you have to go to
main
branch, commit changes and then, on Github and make a Pull request frommain
tomain
.
You can format the code: with npm run format
and lint with npm run lint
.