This web app utilizes Python, Flask, and Bootstrap to enable the user to search for flights and book a flight that goes to their destination. The database is PostgreSQL and keeps track of the flights and customers, as well as how many seats are available and boarding status.
There is a "make_airline_sql.sql" file included that you will need to run in the schema to clear out the tables. In order to run the file on Windows you need to first need to make sure you have pip installed. In the Visual Studio Code terminal type "pip-V"and it will tell you whether or not you have pip installed(if you downloaded a recent version of python then pip should already be installed).
Then in the terminal type "pip install flask psycopg2 flask_sqlalchemy" to retrieve those modules needed to be able to run the code. Next you type in "python app.py" in the terminal and after it runs it will give you the address that the program is running off of. For instance it's more than likely going to be http://127.0.0.1:5000