Skip to content

minelminel/flask-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Flask Boilerplate 🚰

This repository contains a sample minimal Flask application structure that includes:

  • SQLAlchemy
  • Alembic
  • Celery
  • Pytest
  • Coverage

It runs on Python 3.x

Installation

First, clone the repository and create a virtualenv. Then install the requirements:

$ pip install -e .

Before running the application make sure that your local PostgreSQL server is up. Then create the databases:

CREATE DATABASE flask_example;
CREATE DATABASE flask_example_test;

Now you can create the tables using Alembic:

webapp db upgrade

Finally you can run the application:

webapp runserver

or play in the Python REPL:

webapp shell

In order to run unit tests in py.test invoke:

webapp test

To view test coverage:

webapp coverage

There is a preconfigured WSGI module located at webapp.core.wsgi. Example usage with Gunicorn:

gunicorn --workers 1 --bind 0.0.0.0:8000 webapp.core.wsgi:application

If the process fails to start, try prepending the gunicorn with its relative path within your virtual environment, for example env/bin/gunicorn ...

About

fork of https://github.com/sunscrapers/flask-boilerplate updated with current conventions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •