├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── app.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 32b48058cd02_.py │ │ └── 791cd7d80402_.py ├── models.py └── templates │ ├── base.html │ ├── guest_confirmation.html │ ├── guest_list.html │ └── guest_registration.html └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/app.py -------------------------------------------------------------------------------- /app/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /app/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/migrations/alembic.ini -------------------------------------------------------------------------------- /app/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/migrations/env.py -------------------------------------------------------------------------------- /app/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/migrations/script.py.mako -------------------------------------------------------------------------------- /app/migrations/versions/32b48058cd02_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/migrations/versions/32b48058cd02_.py -------------------------------------------------------------------------------- /app/migrations/versions/791cd7d80402_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/migrations/versions/791cd7d80402_.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/models.py -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/guest_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/templates/guest_confirmation.html -------------------------------------------------------------------------------- /app/templates/guest_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/templates/guest_list.html -------------------------------------------------------------------------------- /app/templates/guest_registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/app/templates/guest_registration.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/docker-flask-postgres/HEAD/requirements.txt --------------------------------------------------------------------------------