Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 739 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 739 Bytes

Flask Foundation

A Fork of the original Flask-Foundation, but with the following enhancements:

  • Login using bcrpyted passwords
  • Forms and Models moved into modules
  • An ActiveModel Mixing added for db opertations (eg. User.save())
  • Account creation example
  • Make rename command to rename appname to something else, eg. make rename appname=webapp
  • Change Password example

Getting Started, assumes fully-stocked virtualenv

make rename appname=somenewapp

Create initial migrations

./manage.py db migrate

Apply to database

./manage.py db upgrade

Start

./manage.py runserver

Original Documentation is located at https://jackstouffer.github.io/Flask-Foundation/