Skip to main content

Flask automated MVC experiment

Project description

Flask MVC Experiment (Django alternative)

Idea: Django alternative (powered by Flask + SQL-Alchemy)

Run project

Install requirements

pip install -r requirements.txt

Apply changes to database (from database migration files)

flask db upgrade

Start Webserver

set FLASK_APP=flask_mvc_app
flask run
# optional
flask run --port 80 --host 0.0.0.0

Development

Enable debug mode for development:

set FLASK_DEBUG=1

Use Flask Shell:

flask shell
>>> from flask_mvc_app.models import *
>>> TestModel.all()

Create migration-file after model changes

flask db migrate -m "user model added"

Initialize DB Structures

Normally not needed again... (for information only)

flask db init

Create Release-Build for PIP

python setup.py bdist_wheel

Inspired (or powered) by:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

flask_mvc-0.1.5-py3-none-any.whl (96.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page