Backend service to manager a hotel room bookings, config and its inventory.
This Project contains hotel service APIs to fetch room inventory data based on room type and to update the same. Async-lock is being used to handle the concurrency and new relic has been setup for the monitoring purpose.
The stack used for developing is described as below :
Make sure Github local credentials are setup in your system and SSH keys added in your profile with appropriate priviledges before proceeding. You can refer to Setup Git tutorial for help.
git clone https://github.com/akg104/hotel-service.git
cd hotel-service
npm install
4. Copy the .env.example file into .env to have local parameters for running the application and update the values in .env
cp .env.example .env
mysql> create database hotel_service
- Development environment
- Start the build process manually.
npm start
This will start the server on port defined in .env under `PORT`, which can be accessed through the URL [http://localhost:{PORT}](http://localhost:{portName}) (e.g. http://localhost:8000)
- Write MORE Tests