Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 689 Bytes

README.md

File metadata and controls

35 lines (30 loc) · 689 Bytes

client

Project setup

You need to install dependencies separately for the server and client side. To install, execute the following code snippets:

Installation

Windows (Powershell)

cd server; npm install; cd ..\client; npm install; cd ..

Linux

cd server && npm install && cd ../client && npm install && cd ..

Store API keys

All API Keys should be stored in server/apiKeys.env in the format

API_KEY=1234
ACCOMODATION_KEY=1234
BOOKING_KEY=1234
MONGODB_USER='username'
MONGODB_PASSWORD='password'

whereas 1234 is your API key for the specified API.

Start Server App

npm run server

Start Client App

npm run client