Course project for CSE202 ( Fundamentals of Database Management System) at IIIT-D for Winter 2022 semester.
The project uses Python, MySQL, Bootstrap and Flask framework. Make sure to install the required. To get the required libraries:
pip install -r requirements.txt
Now, create a .env file in the same
touch .env
Add the following in the .env file
HOST=hostName
USER=username
PASSWORD=password
DB=furno
Now, lets create our database and add some data for testing. Navigate to the file "dataDump\furnoWithImages.sql" and run the complete sql script to create the required database, tables and dump data.
Time to export the project name to enviornment variable
export FLASK_APP=furno
Finally, to run the application
flask run