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
- Host: GitHub
- URL: https://github.com/twfksh/python-devops-walkthrough
- Owner: twfksh
- Created: 2024-10-29T18:12:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-30T16:27:33.000Z (over 1 year ago)
- Last Synced: 2025-02-11T12:45:37.155Z (over 1 year ago)
- Topics: aws, devops, docker, fastapi, python
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

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