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.
- Node.js
- Express.js
- Sequelize (for SQL queries)
- MySQL (relational database)
Project is hosted on AWS Server link
Postman Collection to check APIs
Install dependencies:
```sh
npm install
```
Setup .env file and run the project with other microservices
Run following commands to setup database
cd src
npx sequelize init
npx sequelize db:create
npx sequelize db:migrate