Skip to content

Latest commit

 

History

History
49 lines (38 loc) · 1.36 KB

README.md

File metadata and controls

49 lines (38 loc) · 1.36 KB

Flight Service

The Flight Service microservice is responsible for managing flight data within the Flight Management System. It provides endpoints for retrieving information about flights, airports, airplanes, etc.

Technologies Used

  • Node.js
  • Express.js
  • Sequelize (for SQL queries)
  • MySQL (relational database)

Micro-services

Hosting

Project is hosted on AWS Server link

Postman Collection to check APIs

System Design

Link

Installation

Install dependencies:

```sh
npm install
```

Setup .env file and run the project with other microservices

Database Setup

Run following commands to setup database

cd src
npx sequelize init
npx sequelize db:create
npx sequelize db:migrate