Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/veerendra2/greet-me-flask-app
A demo app to demonstrate Github Actions CI/CD pipeline for deployment on Kubernetes (Minikube).
https://github.com/veerendra2/greet-me-flask-app
cicd docker flask flask-application github-actions kubernetes kustomize nginx-proxy pypi-package python waitress
Last synced: about 1 month ago
JSON representation
A demo app to demonstrate Github Actions CI/CD pipeline for deployment on Kubernetes (Minikube).
- Host: GitHub
- URL: https://github.com/veerendra2/greet-me-flask-app
- Owner: veerendra2
- Created: 2023-06-02T18:45:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-25T17:29:20.000Z (over 1 year ago)
- Last Synced: 2024-05-01T16:07:20.395Z (8 months ago)
- Topics: cicd, docker, flask, flask-application, github-actions, kubernetes, kustomize, nginx-proxy, pypi-package, python, waitress
- Language: Python
- Homepage:
- Size: 46.9 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Greet Me
A simple Flask application that greets you according to the time of day.> :information_source: A demo app to demonstrate CI/CD pipeline for deployment on Kubernetes (Minikube).
:diamond_shape_with_a_dot_inside: _**Refer :books:[Gitbook Documentation](https://dust6765.gitbook.io/greet-me-app-documentation/):books: for more information.**_
## :arrow_forward: Run Locally
```bash
$ git clone [email protected]:veerendra2/greet-me-flask-app.git
$ cd greet-me-flask-app
$ python3 src/greet_me/greet_me.py
INFO:Serving on http://0.0.0.0:8080# install as pypi package
$ pip3 install -e .# run cli
$ greet_me
INFO:Serving on http://0.0.0.0:8080# uninstall pypi package
$ pip3 uninstall greet_me
```