24 lines
291 B
Plaintext
24 lines
291 B
Plaintext
# Ignore Python cache files
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Ignore virtual environments
|
|
.venv/
|
|
|
|
# Ignore local environment files
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Ignore logs
|
|
*.log
|
|
|
|
# Ignore Docker-related files
|
|
Dockerfile
|
|
docker-compose.yml
|
|
|
|
# Ignore other unnecessary files
|
|
*.swp
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|