mirror of
https://github.com/ltcptgeneral/cs239-caching.git
synced 2025-03-27 10:15:18 +00:00
26 lines
359 B
Plaintext
26 lines
359 B
Plaintext
# Ignore the virtual environment
|
|
venv/
|
|
|
|
# Ignore Python cache files
|
|
__pycache__/
|
|
**/__pycache__/
|
|
|
|
# Ignore database files (TinyDB JSON)
|
|
database.json
|
|
temp_DB.json
|
|
|
|
# Ignore environment variables file (if used)
|
|
.env
|
|
|
|
# Ignore logs and temporary files
|
|
*.log
|
|
*.tmp
|
|
|
|
# Ignore VSCode & PyCharm project files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Ignore MacOS system files
|
|
.DS_Store
|
|
|