Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aialok/flightsandsearch
https://github.com/aialok/flightsandsearch
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/aialok/flightsandsearch
- Owner: aialok
- Created: 2023-08-20T13:31:40.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-17T20:23:40.000Z (about 1 year ago)
- Last Synced: 2024-10-07T16:55:47.803Z (about 1 month ago)
- Language: JavaScript
- Size: 55.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Flights Service
## Project Setup
- Clone the project on your local
- Execute `npm install` on the same path as of your root directory of the downloaded project.
- Create a `.env` file in the root directory and ass the following environmenr variable
- `PORT=3000`
- Inside the `src/config` folder create a new file `config.json` and then add the following piece of json.```
{
"development": {
"username": ,
"password": ,
"database": "airline_ticket_database_development",
"host": "127.0.0.1",
"dialect": "mysql"
}
}```
- Once you've added your db config as listed above, go to the src folder from your terminal and execute `npx sequelize db:create
and then execute`npx sequelize db:migrate`
`## Database Design
- Airplane Table
- ID
- model_number
- capacity
- created_at
- updated_at- Flights Table
- ID
- src_airport_id
- dest_airport_id
- departure
- arrival
- flight_number
- Airport Table
- ID
- name
- city_id
- address- City Table
- ID
- name- A flight belong to a an airplane but one airplane can be used in multiple flights.
- A city has many airports but one airport belongs to a city
- One airports can have many flights, but a flight belongs to one airport.