- Revision control
Git: Download Git - Code editor
VSCode: Download VSCode - Recommended code editor extensions: (TODO)
- Open a dedicated terminal window (in system or in editor).
- Navigate into the source code folder
cd ~/git/projects/geg-presentation - Pull source code changes from remote repository
git pull
- None.
- Open a dedicated terminal window (in system or in editor).
- Navigate into the source code folder
cd ~/git/projects/geg-presentation - If "package-lock.json" file has been modified (upon Git pull on host):
- Install the most recent project dependencies with
npm install(or usenpm ias shorthand)
- Install the most recent project dependencies with
- Launch development environment with
npm start - Open web browser on host machine and navigate to https://localhost:PORT
- To stop a running development environment use
Ctrl + C