Source code development environment setup Host prerequisites Revision control Git: Download Git Code editor VSCode: Download VSCode Recommended code editor extensions: (TODO) Pulling latest code changes from remote repository 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 Guest prerequisites None. Launching development 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 use npm i as shorthand) 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