diff --git a/.gitignore b/.gitignore index 45ba234..06a5ed1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ __pycache__ .env -.vscode \ No newline at end of file +.vscode +docker-compose.yml diff --git a/readme.md b/readme.md index 2e2fbca..48140d9 100644 --- a/readme.md +++ b/readme.md @@ -15,7 +15,7 @@ services: - TZ=America/Santiago volumes: - ./proto:/app - - venv_proto:/root/venv + - venv:/root/venv working_dir: /app command: sh -c " [ -d /root/venv/bin ] || ( \ @@ -37,5 +37,5 @@ services: - 6379:6379 volumes: - venv_proto: -~~~ \ No newline at end of file + venv: +~~~ diff --git a/requirements.txt b/requirements.txt index ed10bc4..96aac34 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ google protobuf redis[hiredis] -pytz \ No newline at end of file +pytz +requests