├── .gitignore ├── README.md ├── app.yaml ├── app ├── __init__.py ├── models.py └── views.py ├── create_tables.py ├── requirements.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdefelice/flask-gcp-sql/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdefelice/flask-gcp-sql/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdefelice/flask-gcp-sql/HEAD/app.yaml -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdefelice/flask-gcp-sql/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdefelice/flask-gcp-sql/HEAD/app/models.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdefelice/flask-gcp-sql/HEAD/app/views.py -------------------------------------------------------------------------------- /create_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdefelice/flask-gcp-sql/HEAD/create_tables.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdefelice/flask-gcp-sql/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdefelice/flask-gcp-sql/HEAD/run.py --------------------------------------------------------------------------------