Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 970 Bytes

Setup.md

File metadata and controls

49 lines (31 loc) · 970 Bytes

Node

Node is really easy to install & now include NPM. You should be able to run the following command after the installation procedure below.

$ node --version
v0.10.24

$ npm --version
1.3.21

Node installation on Linux

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs

Node installation on Windows

Just go on official Node.js website & grab the installer. Also, be sure to have git available in your PATH, npm might need it.


Front End

Install

$ git clone https://github.com/CoolCoderz/atRentals
$ cd atRentals/FrontEnd
$ npm install

Start & watch

$ npm start

Back End

Install

$ git clone https://github.com/CoolCoderz/atRentals
$ cd atRentals/BackEnd
$ npm install

Start & watch

$ npm start