Skip to content

Setup & Testing

Kevin Rue-Albrecht edited this page Nov 1, 2022 · 2 revisions

Setup

Install Node.js

Install node.js from https://nodejs.org/en/.

Add nodejs to the PATH (Windows)

On Windows, you may need to add /c/Program\ Files/nodejs/ to the PATH.

To do so, add the following line to your ~/.bashrc:

export PATH="$PATH:/c/Program Files/nodejs/"

Clone the repository

git clone git@github.com:OBDS-Training/Help.git

Install dependencies

Set your working directory to the top level of the repository.

cd Help

Run the command below to install required packages and their dependencies.

npm install

Start the webserver on localhost

Run the command below to start the webserver on localhost.

npm run start

In the information that is displayed in the console, click on the link that is stated after 'Web Server is available at'.

For instance: http://localhost:1313/Help/

Clone this wiki locally