The below article will cover the intricacies of setting up databases and heroku in respect to a flask app. This is more like a memo and will have out of sequence instructions or solutions to errors so read thoroughly.
You'll need the packages
| import json | |
| from flask import Flask, url_for, redirect, session | |
| from flask_login import (UserMixin, login_required, login_user, logout_user, current_user) | |
| from flask_googlelogin import GoogleLogin | |
| users = {} | |
| app = Flask(__name__) |
The below article will cover the intricacies of setting up databases and heroku in respect to a flask app. This is more like a memo and will have out of sequence instructions or solutions to errors so read thoroughly.
You'll need the packages