fix requirements

master
Francisco Sandoval 2023-12-10 19:42:13 -03:00
parent ff1550b5df
commit ad5548a38b
3 changed files with 7 additions and 5 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
__pycache__ __pycache__
.env .env
.vscode .vscode
docker-compose.yml

View File

@ -15,7 +15,7 @@ services:
- TZ=America/Santiago - TZ=America/Santiago
volumes: volumes:
- ./proto:/app - ./proto:/app
- venv_proto:/root/venv - venv:/root/venv
working_dir: /app working_dir: /app
command: sh -c " command: sh -c "
[ -d /root/venv/bin ] || ( \ [ -d /root/venv/bin ] || ( \
@ -37,5 +37,5 @@ services:
- 6379:6379 - 6379:6379
volumes: volumes:
venv_proto: venv:
~~~ ~~~

View File

@ -1,4 +1,5 @@
google google
protobuf protobuf
redis[hiredis] redis[hiredis]
pytz pytz
requests