Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reworked to commands framework. #4

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
token
Data/
*.secret
data/
.git/
__pycache__
11 changes: 4 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
token.json
token
Data/
logs/
*.secret
data/
.vs/
clownScore.json
clowns.json
*.bak
config.json
__pycache__
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM python:3.10
FROM python:3.12
WORKDIR /app
COPY . .
COPY src src
COPY requirements.txt .
COPY config.json .
RUN apt update && apt upgrade -y
RUN pip install -r requirements.txt
CMD ["python", "bot.py", "-t", "/secret/token"]
CMD ["python", "src/start_bot.py"]
Loading
Loading