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.
cdinto the project's directory.- Install dependencies with:
npm i. - Run bootstrap with:
npm run bootstrap.
- Fork this project.
- Create a branch from
mainwhere you'll work,devfor 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
mainbranch, commit changes and then, on Github and make a Pull request frommaintomain.
You can format the code: with npm run format and lint with npm run lint.