Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

README.md

File metadata and controls

30 lines (21 loc) · 1.1 KB

Source code development environment setup

Host prerequisites

Pulling latest code changes from remote repository

  1. Open a dedicated terminal window (in system or in editor).
  2. Navigate into the source code folder cd ~/git/projects/geg-presentation
  3. Pull source code changes from remote repository git pull

Guest prerequisites

  • None.

Launching development

  1. Open a dedicated terminal window (in system or in editor).
  2. Navigate into the source code folder cd ~/git/projects/geg-presentation
  3. 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)
  4. Launch development environment with npm start
  5. Open web browser on host machine and navigate to https://localhost:PORT
  6. To stop a running development environment use Ctrl + C