An open API service indexing awesome lists of open source software.

https://github.com/twfksh/python-devops-walkthrough

python devops setup and aws deploy walkthrough
https://github.com/twfksh/python-devops-walkthrough

aws devops docker fastapi python

Last synced: 2 months ago
JSON representation

python devops setup and aws deploy walkthrough

Awesome Lists containing this project

README

          

# python-devops-walkthrough

1. create a python virtualenv `python -m venv ~/.venv` or `virtualenv ~/.venv`
2. create empty files `Makefile`, `requirements.txt`, `main.py`, `Dockerfile`, `lib/__init__.py`
3. populate `Makefile`
4. setup continuous integration, i.e. check for issues like lint errors
![testing_lint_step](https://github.com/user-attachments/assets/183073e5-18f0-49c7-8996-f9c4190c1a1d)

5. build a cli using python fire library `./cli-fire.py --help` to test logic