├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Procfile ├── README.md ├── app.py ├── requirements.txt ├── static └── css │ └── main.css ├── templates ├── base.html ├── index.html └── update.html └── test.db /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | env -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/static/css/main.css -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/templates/update.html -------------------------------------------------------------------------------- /test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakerieger/FlaskIntroduction/HEAD/test.db --------------------------------------------------------------------------------