This project is my final year of high school CS project. I created python web application for managing the data of a sales and marketing management company. The Frontend is built using bootstrap and FLASK framework. The backend is handled by python and the database used to host it is MySQL. It has been built with material UI and Fluent design so make it a delight to use.
Use the package manager pip to install flask and mysql connector. Also make Sure Mysql is running on your system.
pip install Flask
pip install mysql-connector-python
To install the database, first download the userbase.sql from the repo.Then create a database in mysql named userbase and run the following commands on cmd.
>cd C:\Program Files\MySQL\MySQL Server 8.0\bin
>mysqlimport -u <username> -p userbase <path to the downloaded userbase.sql file>
Make sure to change the following in the app.py file .
app.config['MYSQL_HOST'] = 'localhost'
app.config['MYSQL_USER'] = '<username>'
app.config['MYSQL_PASSWORD'] = '<password>'
app.config['MYSQL_DB'] = 'userbase'