├── .gitignore ├── app ├── app.py ├── github_cache.sqlite ├── static │ └── main.js └── templates │ └── index.html ├── boilerplate.html ├── flask.png ├── readme.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-single-page-app/HEAD/.gitignore -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-single-page-app/HEAD/app/app.py -------------------------------------------------------------------------------- /app/github_cache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-single-page-app/HEAD/app/github_cache.sqlite -------------------------------------------------------------------------------- /app/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-single-page-app/HEAD/app/static/main.js -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-single-page-app/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /boilerplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-single-page-app/HEAD/boilerplate.html -------------------------------------------------------------------------------- /flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-single-page-app/HEAD/flask.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-single-page-app/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-single-page-app/HEAD/requirements.txt --------------------------------------------------------------------------------