Skip to content
This repository was archived by the owner on Aug 4, 2021. It is now read-only.

Latest commit

 

History

History
29 lines (24 loc) · 746 Bytes

File metadata and controls

29 lines (24 loc) · 746 Bytes

Web Application Project

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.