dotfiles/vscode/.vscode/extensions/ms-azuretools.vscode-docker-1.29.1/resources/templates/python/requirements.txt.template
2024-08-02 10:42:24 -06:00

15 lines
482 B
Plaintext

# To ensure app dependencies are ported from your virtual environment/host machine into your container, run 'pip freeze > requirements.txt' in the terminal to overwrite this file
{{#if (eq platform 'Python: Django')}}
django==5.0.1
{{/if}}
{{#if (eq platform 'Python: FastAPI')}}
fastapi[all]==0.109.0
uvicorn[standard]==0.27.0
{{/if}}
{{#if (eq platform 'Python: Flask')}}
flask==3.0.1
{{/if}}
{{#unless (eq platform 'Python: General')}}
gunicorn==21.2.0
{{/unless}}