Using HTML ,CSS ,Bootstrap on Frontend and Python Web-framework Flask along with MySQL database
- Install python modules ( use pip3 for linux )
pip install -r requirements.txt
- Run dbinit.sql to Inital database and create required Schema for the project
mysql -u yourUserName -p project < dbinit.sql
- Change the username and password in dbinit.py to your local system MySQL username and password in app.py
app.config['MYSQL_HOST'] = 'localhost'
app.config['MYSQL_USER'] = 'Your Database Username here'
app.config['MYSQL_PASSWORD'] = 'Your Database Password here'
app.config['MYSQL_CURSORCLASS'] = 'DictCursor'
update from git terminal