Skip to content

Commit d68c04b

Browse files
committed
Update .gitignore for pure Python/FastHTML project
- Add data/ directory and SQLite journal files - Add comprehensive environment file patterns - Add requirements*.txt pattern (using pyproject.toml instead) - Better organization of ignore patterns
1 parent f654b9f commit d68c04b

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.gitignore

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,24 @@ htmlcov/
2626
cover/
2727

2828
# Virtual Environments
29-
.env
3029
.venv
3130
env/
3231
venv/
3332
ENV/
3433

34+
# Environment files
35+
.env
36+
.env.local
37+
.env.development
38+
.env.production
39+
.env.*
40+
3541
# Project specific
3642
.curriculum_curator/
3743
output/
44+
data/
45+
*.db-journal
46+
*.db-wal
3847

3948
# macOS
4049
.DS_Store
@@ -80,4 +89,7 @@ dist/
8089
build/
8190

8291
# Reference implementations (read-only)
83-
reference-implementations/
92+
reference-implementations/
93+
94+
# Old requirements files (we use pyproject.toml)
95+
requirements*.txt

0 commit comments

Comments
 (0)