Ajouter les fichiers de configuration pour VS Code et le fichier .gitignore, et mettre à jour le Dockerfile, requirements.txt, les imports dans models.py et security.py
This commit is contained in:
parent
c6579868d7
commit
dce4482e46
6 changed files with 118 additions and 11 deletions
12
docker-compose.debug.yml
Normal file
12
docker-compose.debug.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
version: '3.4'
|
||||
|
||||
services:
|
||||
pytest:
|
||||
image: pytest
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ./Dockerfile
|
||||
command: ["sh", "-c", "pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 -m uvicorn main:app --host 0.0.0.0 --port 8000"]
|
||||
ports:
|
||||
- 8000:8000
|
||||
- 5678:5678
|
Loading…
Add table
Add a link
Reference in a new issue