├── .flaskenv ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── appname ├── __init__.py ├── assets.py ├── controllers │ ├── __init__.py │ └── main.py ├── extensions.py ├── forms.py ├── models.py ├── settings.py ├── static │ ├── css │ │ ├── main.css │ │ └── vendor │ │ │ ├── bootstrap.min.css │ │ │ └── helper.css │ ├── js │ │ ├── main.js │ │ └── vendor │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ └── public │ │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff └── templates │ ├── base.html │ ├── index.html │ ├── login.html │ └── restricted.html ├── manage.py ├── requirements.txt └── tests ├── __init__.py ├── conftest.py ├── test_config.py ├── test_login.py ├── test_models.py └── test_urls.py /.flaskenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/.flaskenv -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/README.md -------------------------------------------------------------------------------- /appname/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/__init__.py -------------------------------------------------------------------------------- /appname/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/assets.py -------------------------------------------------------------------------------- /appname/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appname/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/controllers/main.py -------------------------------------------------------------------------------- /appname/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/extensions.py -------------------------------------------------------------------------------- /appname/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/forms.py -------------------------------------------------------------------------------- /appname/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/models.py -------------------------------------------------------------------------------- /appname/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/settings.py -------------------------------------------------------------------------------- /appname/static/css/main.css: -------------------------------------------------------------------------------- 1 | .container { 2 | margin-top: 60px; 3 | } -------------------------------------------------------------------------------- /appname/static/css/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/static/css/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /appname/static/css/vendor/helper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/static/css/vendor/helper.css -------------------------------------------------------------------------------- /appname/static/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appname/static/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/static/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /appname/static/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/static/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /appname/static/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/static/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /appname/static/public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/static/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /appname/static/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/static/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /appname/static/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/static/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /appname/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/templates/base.html -------------------------------------------------------------------------------- /appname/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/templates/index.html -------------------------------------------------------------------------------- /appname/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/templates/login.html -------------------------------------------------------------------------------- /appname/templates/restricted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/appname/templates/restricted.html -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/tests/test_login.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackStouffer/Flask-Foundation/HEAD/tests/test_urls.py --------------------------------------------------------------------------------