This baseline is a template flask app that can be used to get going quickly without having to reinvent the wheel. Comes with account pages with session/cookie management.
Things you will need to get working
- PostgreSQL
- Create Database
- Have the psycopg2 library installed
- Make sure to update the db_session file to connect to database.
- Grant Permission to Postgres (or whatever user you end up using)
- Create Database
- Requirements.txt has the rest of the libraries you need
This project is using SQLAlchemy for database transactions, you can change this to something else. However, with SQLAlchemy you can easily change to another database such as MySQL or SQLite3.