├── .gitignore ├── LICENSE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── app ├── README.md ├── __init__.py ├── commands │ ├── __init__.py │ └── init_db.py ├── local_settings_example.py ├── models │ ├── __init__.py │ └── user_models.py ├── settings.py ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.min.js │ │ │ ├── jquery.min.js │ │ │ └── respond.min.js │ └── css │ │ └── app.css ├── templates │ ├── README.md │ ├── common │ │ └── form_macros.html │ ├── layout.html │ └── main │ │ ├── admin_page.html │ │ ├── home_page.html │ │ ├── main_base.html │ │ ├── user_page.html │ │ └── user_profile_page.html └── views │ ├── __init__.py │ └── main_views.py ├── fabfile.py ├── flask_app.py ├── manage.py ├── migrations ├── README.md ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ └── 0001c8ac1a69_initial_version.py ├── requirements.txt ├── tests ├── .coveragerc ├── README.md ├── __init__.py ├── conftest.py └── test_page_urls.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/README.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/commands/__init__.py -------------------------------------------------------------------------------- /app/commands/init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/commands/init_db.py -------------------------------------------------------------------------------- /app/local_settings_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/local_settings_example.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/models/__init__.py -------------------------------------------------------------------------------- /app/models/user_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/models/user_models.py -------------------------------------------------------------------------------- /app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/settings.py -------------------------------------------------------------------------------- /app/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /app/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/bootstrap/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/static/bootstrap/js/html5shiv.min.js -------------------------------------------------------------------------------- /app/static/bootstrap/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/static/bootstrap/js/jquery.min.js -------------------------------------------------------------------------------- /app/static/bootstrap/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/static/bootstrap/js/respond.min.js -------------------------------------------------------------------------------- /app/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/static/css/app.css -------------------------------------------------------------------------------- /app/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/templates/README.md -------------------------------------------------------------------------------- /app/templates/common/form_macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/templates/common/form_macros.html -------------------------------------------------------------------------------- /app/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/templates/layout.html -------------------------------------------------------------------------------- /app/templates/main/admin_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/templates/main/admin_page.html -------------------------------------------------------------------------------- /app/templates/main/home_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/templates/main/home_page.html -------------------------------------------------------------------------------- /app/templates/main/main_base.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html" %} 2 | -------------------------------------------------------------------------------- /app/templates/main/user_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/templates/main/user_page.html -------------------------------------------------------------------------------- /app/templates/main/user_profile_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/templates/main/user_profile_page.html -------------------------------------------------------------------------------- /app/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/views/__init__.py -------------------------------------------------------------------------------- /app/views/main_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/app/views/main_views.py -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/fabfile.py -------------------------------------------------------------------------------- /flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/flask_app.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/manage.py -------------------------------------------------------------------------------- /migrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/migrations/README.md -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/0001c8ac1a69_initial_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/migrations/versions/0001c8ac1a69_initial_version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/tests/.coveragerc -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_page_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/tests/test_page_urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingthio/Flask-User-starter-app/HEAD/tox.ini --------------------------------------------------------------------------------