mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
15 lines
479 B
Plaintext
15 lines
479 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==4.0
|
|
{{/if}}
|
|
{{#if (eq platform 'Python: FastAPI')}}
|
|
fastapi[all]==0.70.1
|
|
uvicorn[standard]==0.15.0
|
|
{{/if}}
|
|
{{#if (eq platform 'Python: Flask')}}
|
|
flask==2.0.2
|
|
{{/if}}
|
|
{{#unless (eq platform 'Python: General')}}
|
|
gunicorn==20.1.0
|
|
{{/unless}}
|