From 59c56094c87ba36afe09d131cea68fbafac54a2f Mon Sep 17 00:00:00 2001 From: ian Date: Wed, 13 Mar 2024 13:02:15 -0600 Subject: [PATCH] reorganize --- Dockerfile => Dockerfile-bot | 2 +- py/cogs/future.py => Dockerfile-web | 0 {py => bot}/bin/storage.py | 0 {py => bot}/bot.py | 0 {py => bot}/cogs/counting.py | 0 bot/cogs/future.py | 0 {py => bot}/cogs/reply.py | 0 {py => bot}/cogs/settings.py | 0 {py => bot}/requirements.txt | 0 9 files changed, 1 insertion(+), 1 deletion(-) rename Dockerfile => Dockerfile-bot (88%) rename py/cogs/future.py => Dockerfile-web (100%) rename {py => bot}/bin/storage.py (100%) rename {py => bot}/bot.py (100%) rename {py => bot}/cogs/counting.py (100%) create mode 100644 bot/cogs/future.py rename {py => bot}/cogs/reply.py (100%) rename {py => bot}/cogs/settings.py (100%) rename {py => bot}/requirements.txt (100%) diff --git a/Dockerfile b/Dockerfile-bot similarity index 88% rename from Dockerfile rename to Dockerfile-bot index c763be5..65c35a7 100644 --- a/Dockerfile +++ b/Dockerfile-bot @@ -1,6 +1,6 @@ FROM python:3.12-slim RUN mkdir -p /app -COPY py/. /app +COPY bot/. /app WORKDIR /app RUN pip install -r requirements.txt ENTRYPOINT ["python", "-u", "bot.py"] \ No newline at end of file diff --git a/py/cogs/future.py b/Dockerfile-web similarity index 100% rename from py/cogs/future.py rename to Dockerfile-web diff --git a/py/bin/storage.py b/bot/bin/storage.py similarity index 100% rename from py/bin/storage.py rename to bot/bin/storage.py diff --git a/py/bot.py b/bot/bot.py similarity index 100% rename from py/bot.py rename to bot/bot.py diff --git a/py/cogs/counting.py b/bot/cogs/counting.py similarity index 100% rename from py/cogs/counting.py rename to bot/cogs/counting.py diff --git a/bot/cogs/future.py b/bot/cogs/future.py new file mode 100644 index 0000000..e69de29 diff --git a/py/cogs/reply.py b/bot/cogs/reply.py similarity index 100% rename from py/cogs/reply.py rename to bot/cogs/reply.py diff --git a/py/cogs/settings.py b/bot/cogs/settings.py similarity index 100% rename from py/cogs/settings.py rename to bot/cogs/settings.py diff --git a/py/requirements.txt b/bot/requirements.txt similarity index 100% rename from py/requirements.txt rename to bot/requirements.txt