Boilerplate project template for a simple landing page to collect prelaunch emails. Powered by Flask, of course. <3
Rename config_sample.py as config.py and then update.
$ export APP_SETTINGS="project.config.DevelopmentConfig"
or
$ export APP_SETTINGS="project.config.ProductionConfig"
$ python manage.py create_db
$ python manage.py db init
$ python manage.py db migrate
$ python manage.py create_admin
$ python manage.py create_data
$ python manage.py runserver
Without coverage:
$ python manage.py test
With coverage:
$ python manage.py cov