From c676a388bdceb26d326c4c1cdf487fe99487b85f Mon Sep 17 00:00:00 2001 From: Sergey Bahmatov Date: Fri, 28 Mar 2025 20:51:59 +0500 Subject: [PATCH] fix --- Dockerfile | 4 ++-- {src/pomodoro_bot => pomodoro_bot}/__init__.py | 0 {src/pomodoro_bot => pomodoro_bot}/bot.py | 0 {src/pomodoro_bot => pomodoro_bot}/main.py | 0 {src/pomodoro_bot => pomodoro_bot}/models.py | 0 {src/pomodoro_bot => pomodoro_bot}/redis_client.py | 0 {src/pomodoro_bot => pomodoro_bot}/timer_magager.py | 0 {src/pomodoro_bot => pomodoro_bot}/user_manager.py | 0 8 files changed, 2 insertions(+), 2 deletions(-) rename {src/pomodoro_bot => pomodoro_bot}/__init__.py (100%) rename {src/pomodoro_bot => pomodoro_bot}/bot.py (100%) rename {src/pomodoro_bot => pomodoro_bot}/main.py (100%) rename {src/pomodoro_bot => pomodoro_bot}/models.py (100%) rename {src/pomodoro_bot => pomodoro_bot}/redis_client.py (100%) rename {src/pomodoro_bot => pomodoro_bot}/timer_magager.py (100%) rename {src/pomodoro_bot => pomodoro_bot}/user_manager.py (100%) diff --git a/Dockerfile b/Dockerfile index 881d356..a006949 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,11 @@ FROM python:3.11-slim WORKDIR /app -COPY ./src/pomodoro_bot /app/pomodoro_bot +COPY ./pomodoro_bot /app/pomodoro_bot COPY requirements.txt ./ ENV PYTHONPATH=/app RUN pip install --no-cache-dir -r requirements.txt -CMD ["python", "-m", "pomodoro_bot.main"] +CMD ["python", "-m", "pomodoro_bot.main"] \ No newline at end of file diff --git a/src/pomodoro_bot/__init__.py b/pomodoro_bot/__init__.py similarity index 100% rename from src/pomodoro_bot/__init__.py rename to pomodoro_bot/__init__.py diff --git a/src/pomodoro_bot/bot.py b/pomodoro_bot/bot.py similarity index 100% rename from src/pomodoro_bot/bot.py rename to pomodoro_bot/bot.py diff --git a/src/pomodoro_bot/main.py b/pomodoro_bot/main.py similarity index 100% rename from src/pomodoro_bot/main.py rename to pomodoro_bot/main.py diff --git a/src/pomodoro_bot/models.py b/pomodoro_bot/models.py similarity index 100% rename from src/pomodoro_bot/models.py rename to pomodoro_bot/models.py diff --git a/src/pomodoro_bot/redis_client.py b/pomodoro_bot/redis_client.py similarity index 100% rename from src/pomodoro_bot/redis_client.py rename to pomodoro_bot/redis_client.py diff --git a/src/pomodoro_bot/timer_magager.py b/pomodoro_bot/timer_magager.py similarity index 100% rename from src/pomodoro_bot/timer_magager.py rename to pomodoro_bot/timer_magager.py diff --git a/src/pomodoro_bot/user_manager.py b/pomodoro_bot/user_manager.py similarity index 100% rename from src/pomodoro_bot/user_manager.py rename to pomodoro_bot/user_manager.py