├── .coveragerc ├── .gitattributes ├── .gitignore ├── .pylintrc ├── .python-version ├── Makefile ├── Procfile ├── README.md ├── app.json ├── bin ├── README.md ├── post_compile └── pre_compile ├── demo ├── __init__.py ├── api │ ├── __init__.py │ ├── auth.py │ ├── task.py │ └── user.py ├── compat.py ├── database.py ├── extensions.py ├── helpers.py ├── models │ ├── __init__.py │ ├── task.py │ └── user.py └── settings.py ├── gunicorn.conf.py ├── manage.py ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ └── 1aef3e1e33a2_create_user_and_task_tables.py ├── requirements.txt ├── requirements ├── dev.txt └── prod.txt └── runtime.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/.pylintrc -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 2.7.11 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/app.json -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/post_compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/bin/post_compile -------------------------------------------------------------------------------- /bin/pre_compile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -o pipefail 4 | -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/__init__.py -------------------------------------------------------------------------------- /demo/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/api/__init__.py -------------------------------------------------------------------------------- /demo/api/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/api/auth.py -------------------------------------------------------------------------------- /demo/api/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/api/task.py -------------------------------------------------------------------------------- /demo/api/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/api/user.py -------------------------------------------------------------------------------- /demo/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/compat.py -------------------------------------------------------------------------------- /demo/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/database.py -------------------------------------------------------------------------------- /demo/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/extensions.py -------------------------------------------------------------------------------- /demo/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/helpers.py -------------------------------------------------------------------------------- /demo/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /demo/models/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/models/task.py -------------------------------------------------------------------------------- /demo/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/models/user.py -------------------------------------------------------------------------------- /demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/demo/settings.py -------------------------------------------------------------------------------- /gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/gunicorn.conf.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/manage.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/1aef3e1e33a2_create_user_and_task_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/migrations/versions/1aef3e1e33a2_create_user_and_task_tables.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfriend/flask-restful-demo/HEAD/requirements/prod.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.11 2 | --------------------------------------------------------------------------------