Skip to content

Installation Tutorial

Jeremy Weiss edited this page Sep 18, 2020 · 9 revisions

Welcome to the TutorBase wiki!

Local Environment Setup:

1) Install Node.js:

https://nodejs.org/en/download/

2) Create a folder and clone the directory from GitHub using the line below

`$ git clone https://github.com/DangItJason/TutorBase.git`

3) Install dependencies:

Dependencies must be installed for both the client and server folders.

`$ cd client` to navigate to client
`$ npm install` to install client-side dependencies

`$ cd server` to navigate to server
`$ npm install` to install server-side dependencies

4) Starting the application

Run each set of commands in separate terminals.

To start the client (front-end):
`$ cd client`
`$ npm start`

To start the server (back-end):
`$ cd server`
`$ npm start`
Clone this wiki locally