Skip to content

Commit 74d296e

Browse files
committed
Add Makefile and update .gitignore for AI-related files
.gitignore - add rules to ignore AI instruction files (e.g., `CLAUDE.md`, `.cursorrules`, `.claude`) Makefile - introduce setup, run, and test commands using `uv`
1 parent 0ac9493 commit 74d296e

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,3 +213,11 @@ yarn-error.log*
213213
# typescript
214214
*.tsbuildinfo
215215
next-env.d.ts
216+
217+
# AI instruction files (generated)
218+
CLAUDE.md
219+
GEMINI.md
220+
.cursorrules
221+
222+
# AI instruction files (generated)
223+
.claude

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.PHONY: setup run test
2+
3+
setup:
4+
uv sync --group extras --group test
5+
6+
run:
7+
uv run python src/main.py
8+
9+
test:
10+
uv run pytest src tests

0 commit comments

Comments
 (0)