├── .gitignore ├── Dockerfile ├── README.md ├── app ├── __init__.py ├── auth │ ├── __init__.py │ ├── apis.py │ ├── controllers.py │ ├── forms.py │ └── models.py ├── static │ ├── css │ │ ├── bootstrap.css │ │ └── style.css │ ├── images │ │ └── favicon.ico │ └── js │ │ ├── bootstrap.min.js │ │ └── jquery-2.1.4.min.js ├── templates │ ├── auth │ │ ├── signin.html │ │ └── signup.html │ ├── error │ │ ├── 404.html │ │ └── 500.html │ ├── footer.html │ ├── header.html │ └── users │ │ ├── user.html │ │ └── users.html ├── tests │ ├── __init__.py │ ├── mod_auth_test.py │ └── skeleton_test.py └── users │ ├── __init__.py │ ├── controllers.py │ └── models.py ├── config.py ├── manager.py ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 0d65edefec64_.py │ └── 82f6fd5ccf1a_.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/auth/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/auth/apis.py -------------------------------------------------------------------------------- /app/auth/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/auth/controllers.py -------------------------------------------------------------------------------- /app/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/auth/forms.py -------------------------------------------------------------------------------- /app/auth/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/static/css/bootstrap.css -------------------------------------------------------------------------------- /app/static/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/images/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/static/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /app/templates/auth/signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/templates/auth/signin.html -------------------------------------------------------------------------------- /app/templates/auth/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/templates/auth/signup.html -------------------------------------------------------------------------------- /app/templates/error/404.html: -------------------------------------------------------------------------------- 1 | 404 2 | -------------------------------------------------------------------------------- /app/templates/error/500.html: -------------------------------------------------------------------------------- 1 | 500 2 | -------------------------------------------------------------------------------- /app/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/templates/footer.html -------------------------------------------------------------------------------- /app/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/templates/header.html -------------------------------------------------------------------------------- /app/templates/users/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/templates/users/user.html -------------------------------------------------------------------------------- /app/templates/users/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/templates/users/users.html -------------------------------------------------------------------------------- /app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/mod_auth_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/tests/mod_auth_test.py -------------------------------------------------------------------------------- /app/tests/skeleton_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/tests/skeleton_test.py -------------------------------------------------------------------------------- /app/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/users/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/users/controllers.py -------------------------------------------------------------------------------- /app/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/app/users/models.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/config.py -------------------------------------------------------------------------------- /manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/manager.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/0d65edefec64_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/migrations/versions/0d65edefec64_.py -------------------------------------------------------------------------------- /migrations/versions/82f6fd5ccf1a_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/migrations/versions/82f6fd5ccf1a_.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatcoke/flask-structure/HEAD/requirements.txt --------------------------------------------------------------------------------