Skip to content

Commit 3b0a3cb

Browse files
committed
chore: update gitignore and dockerfile, add ruff dependency
Add .ruff_cache, doxygen docs and .DS_Store to gitignore Include ruff in project dependencies Install make in docker container for build tools
1 parent 16e97e8 commit 3b0a3cb

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,6 @@ cython_debug/
142142
structure.txt
143143
todo.txt
144144
/src/app/utils/files/*
145+
.ruff_cache
146+
docs/doxygen
147+
.DS_Store

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ FROM python:3.13-slim
22

33
WORKDIR /work/
44

5+
RUN apt-get update && apt-get install -y make && rm -rf /var/lib/apt/lists/*
6+
57
RUN pip install uv
68
COPY ./pyproject.toml /work/pyproject.toml
79
COPY ./uv.lock /work/uv.lock

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ dependencies = [
3636
"google-genai==1.23.0",
3737
"python-docx==1.2.0",
3838
"pillow==11.2.1",
39-
"reportlab==4.4.2"
39+
"reportlab==4.4.2",
40+
"ruff==0.14.2"
4041
]
4142

4243
[project.optional-dependencies]

0 commit comments

Comments
 (0)