Clone the git repository from GitHub (or use the GitHub app).
$ git clone git@github.com:weimer-coders/school-tools.gitEnter the project and install its dependencies.
$ cd school-tools
$ npm installIn order to start developing on the project activate the webpack-dev-server.
$ npm run devThis will start a server on http://localhost:8080/ and open your default browser.
After editing any files, save and refresh the page to see the changes.
When you're ready to deploy the code, run the build script
$ npm run buildThis will create a directory called dist with all your built files which you upload to a server.