Skip to content

A demo app to demonstrate Github Actions CI/CD pipeline for deployment on Kubernetes (Minikube).

Notifications You must be signed in to change notification settings

veerendra2/greet-me-flask-app

Repository files navigation

Greet Me

A simple Flask application that greets you according to the time of day.

ℹ️ A demo app to demonstrate CI/CD pipeline for deployment on Kubernetes (Minikube).

💠 Refer 📚Gitbook Documentation📚 for more information.

▶️ Run Locally

$ 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