Getting Started - Ray-F/Genie GitHub Wiki
1) Installing Node and Yarn package manager
Download NodeJS from here: https://nodejs.org/en/download/.
Follow these steps to install Yarn: https://classic.yarnpkg.com/en/docs/install
2) Cloning this repository
Make sure you have git installed prior (download here: https://git-scm.com/downloads). Navigate to where you would like your code to be stored. Type git clone https://github.com/Ray-F/genie.git Genie
to create a subfolder 'Genie' with a clone of this repository.
3) Installing dependencies
Navigate to directory folder in (2) and type yarn install
, then yarn run init
. This will install required dependencies into both server and client folders.
4) Beginning development
To start the development environment, type yarn run dev
in the root directory (Genie) folder.
5) Check if everything is working
Navigate to localhost:3000
and you should be greeted by Genie Client.
Navigate to localhost:9002
and you should be greeted by Genie Express API.