Skip to content

Commit 3dd9195

Browse files
Updates and corrections (#67)
* clean up dependency definitions * add new config keys for the webserver related pieces * clean up docker compose, key ordering and remove deprecated key * fix the warning around non-json ENTRYPOINT directive * make requested changes
1 parent 495fbd8 commit 3dd9195

9 files changed

+636
-252
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ COPY poetry.lock pyproject.toml ./
5151
RUN poetry install --only=main
5252

5353
COPY . /app/
54-
ENTRYPOINT poetry run python -O launcher.py
54+
ENTRYPOINT ["poetry", "run", "python", "-O", "launcher.py" ]

config.template.toml

+4
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,7 @@ url = 'http://snekbox:8060/eval' # default url
3131

3232
[GITHUB] # optional
3333
bot_secret = ""
34+
35+
[WEBSERVER] # optional
36+
host = "127.0.0.1"
37+
port = 2332

dev-requirements.txt

-2
This file was deleted.

docker-compose.yml

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
services:
22
bot:
3-
container_name: pythonista-bot
4-
depends_on:
5-
- database
63
image: ghcr.io/pythonistaguild/pythonista-bot:latest
4+
container_name: pythonista-bot
75
restart: unless-stopped
86
volumes:
97
- ./config.toml:/app/config.toml:ro
8+
depends_on:
9+
- database
1010

1111
database:
12+
image: postgres
1213
container_name: pythonista-bot-db
1314
env_file:
1415
- .env
@@ -19,21 +20,16 @@ services:
1920
healthcheck:
2021
interval: 1s
2122
retries: 10
22-
test:
23-
[
24-
"CMD-SHELL",
25-
"pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"
26-
]
23+
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
2724
timeout: 5s
28-
image: postgres
2925
restart: always
3026
volumes:
3127
- pgdata:/var/lib/postgresql/data
3228
- ./database/schema.sql:/docker-entrypoint-initdb.d/schema.sql:ro
3329

3430
snekbox:
35-
container_name: snekbox-eval
3631
image: ghcr.io/python-discord/snekbox
32+
container_name: snekbox-eval
3733
ipc: "none"
3834
ports:
3935
- "127.0.0.1:8060:8060"
@@ -42,6 +38,5 @@ services:
4238
- "snekbox"
4339
restart: always
4440

45-
version: "3"
4641
volumes:
4742
pgdata:

launcher.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,14 @@ async def main() -> None:
6363
extension.name,
6464
)
6565

66-
app: Application = Application(bot=bot)
67-
config: uvicorn.Config = uvicorn.Config(app, port=2332)
68-
server: uvicorn.Server = uvicorn.Server(config)
69-
70-
tasks.add(asyncio.create_task(bot.start(core.CONFIG["TOKENS"]["bot"])))
71-
await server.serve()
66+
server_config = core.CONFIG.get("WEBSERVER")
67+
if server_config:
68+
app: Application = Application(bot=bot)
69+
config: uvicorn.Config = uvicorn.Config(app, host=server_config["host"], port=server_config["port"])
70+
server: uvicorn.Server = uvicorn.Server(config)
71+
72+
tasks.add(asyncio.create_task(server.serve()))
73+
await bot.start(core.CONFIG["TOKENS"]["bot"])
7274

7375

7476
try:

poetry.lock

+608-217
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ readme = "README.md"
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.11"
15-
"discord.py" = { git = "https://github.com/Rapptz/discord.py.git"}
15+
"discord.py" = { git = "https://github.com/Rapptz/discord.py.git", extras = [
16+
"speed",
17+
] }
1618
aiohttp = "*"
1719
asyncpg = "*"
1820
toml = "*"
@@ -26,16 +28,11 @@ ruff = "*"
2628
"asyncpg-stubs" = "*"
2729
"typing-extensions" = "*"
2830

29-
[tool.black]
30-
line-length = 125
31-
preview = true
32-
3331
[tool.ruff]
3432
line-length = 125
3533
target-version = "py311"
3634

3735
[tool.ruff.lint]
38-
exclude = ["docs/extensions/*.py"]
3936
select = [
4037
"C4",
4138
"F",

requirements.txt

-9
This file was deleted.

types_/config.py

+6
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ class Suggestions(TypedDict):
3434
webhook_url: str
3535

3636

37+
class Webserver(TypedDict):
38+
host: str
39+
port: int
40+
41+
3742
class Config(TypedDict):
3843
prefix: str
3944
owner_ids: NotRequired[list[int]]
@@ -43,3 +48,4 @@ class Config(TypedDict):
4348
SNEKBOX: NotRequired[Snekbox]
4449
BADBIN: BadBin
4550
SUGGESTIONS: NotRequired[Suggestions]
51+
WEBSERVER: NotRequired[Webserver]

0 commit comments

Comments
 (0)