Inspired by @CoreyMSchafer 's Flask Tutorials : Flask Web Application Tutorial
The goal of this project was to learn how to use create a Web Application using the Flask Framework.
Dependencies:
- Python 3.7+
- Pillow
- flask_login
- flask-bcrypt
- flask-sqlalchemy
- flask-wtf
- flask-mail
- flask
- secrets
- flask_bcrypt
Make sure to create app/secrets.py and in your secrets.py add the following:
SECRET_KEY = 'SOME RANDOM STRING'
MAIL_USER = 'USERNAME'
MAIL_PASS = 'PASSWORD'
Note: If you are using Gmail. You need to turn on ' Less secure app access' in your Gmail Account Security.