This is a new repositiory for Python for DevOps and deloying of app on AWS Cloud
- Create a Python Virtual Environment
python3 -m venv ~./venv
orvirtualenv ~/.venv
- Creat empty files -
requirement.txt
,Dockerfile
,Makefile
mylib/__init__.py
- Populate Makefile
- Setup Continuous Integration, i.e check code for issues like lint errors
- Build cli using Python Fire library
./cli-fire.py --help
to test the logic before we move to microservice