This is a todo list demo designed for CS411.
<iframe width="560" height="315" src="https://www.youtube.com/embed/sY1lLGe7ECA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>A comprehensive writeup is avaliable here.
python >= 3.5
git clone https://github.com/a2975667/flask-gcp-mysql-demo.git
cd flask-gcp-mysql-demo
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
export FLASK_APP = app
flask run
Create a app.yaml
file in the root folder with the following content:
runtime: python38 # or another supported version
instance_class: F1
env_variables:
MYSQL_USER: <user_name> # please put in your credentials
MYSQL_PASSWORD: <user_pw> # please put in your credentials
MYSQL_DB: <database_name> # please put in your credentials
MYSQL_HOST: <database_ip> # please put in your credentials
handlers:
# Matches requests to /images/... to files in static/images/...
- url: /img
static_dir: static/img
- url: /script
static_dir: static/script
- url: /styles
static_dir: static/styles
Setting up the deployment
curl https://sdk.cloud.google.com | bash
gcloud components install app-engine-python
gcloud config set project cs411-sp21
gcloud auth login
gcloud app deploy