├── .gitignore ├── README.md ├── docker-compose.yml ├── flask ├── Dockerfile ├── app.ini ├── bot │ └── __init__.py ├── main.py └── requirements.txt ├── img ├── line-bot webhook-url.png ├── sslforfree.png ├── step1 create gcp server.png └── step2 gcp ssh 連線.png ├── nginx ├── Dockerfile └── nginx.conf ├── poetry.lock └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /flask/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/flask/Dockerfile -------------------------------------------------------------------------------- /flask/app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/flask/app.ini -------------------------------------------------------------------------------- /flask/bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/flask/bot/__init__.py -------------------------------------------------------------------------------- /flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/flask/main.py -------------------------------------------------------------------------------- /flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/flask/requirements.txt -------------------------------------------------------------------------------- /img/line-bot webhook-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/img/line-bot webhook-url.png -------------------------------------------------------------------------------- /img/sslforfree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/img/sslforfree.png -------------------------------------------------------------------------------- /img/step1 create gcp server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/img/step1 create gcp server.png -------------------------------------------------------------------------------- /img/step2 gcp ssh 連線.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/img/step2 gcp ssh 連線.png -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/Flask-LINE-Bot-GCP/HEAD/pyproject.toml --------------------------------------------------------------------------------