Compare commits
No commits in common. "0cdc47d0d241329bf0ede3f670796d4a11d1c41d" and "c90ee6b73fa3869c00e7b6dea068df7a672f0169" have entirely different histories.
0cdc47d0d2
...
c90ee6b73f
@ -1,61 +1,30 @@
|
|||||||
# Git
|
# Git files
|
||||||
.git
|
.git
|
||||||
.gitignore
|
.gitignore
|
||||||
|
|
||||||
# Python
|
# Virtual environment
|
||||||
|
.venv
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
ENV/
|
||||||
|
*.env # Ignore local .env files within the backend directory if any
|
||||||
|
|
||||||
|
# Python cache
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
*.so
|
|
||||||
.Python
|
|
||||||
env/
|
|
||||||
build/
|
|
||||||
develop-eggs/
|
|
||||||
dist/
|
|
||||||
downloads/
|
|
||||||
eggs/
|
|
||||||
.eggs/
|
|
||||||
lib/
|
|
||||||
lib64/
|
|
||||||
parts/
|
|
||||||
sdist/
|
|
||||||
var/
|
|
||||||
*.egg-info/
|
|
||||||
.installed.cfg
|
|
||||||
*.egg
|
|
||||||
|
|
||||||
# Virtual Environment
|
# IDE files
|
||||||
venv/
|
|
||||||
ENV/
|
|
||||||
|
|
||||||
# IDE
|
|
||||||
.idea/
|
.idea/
|
||||||
.vscode/
|
.vscode/
|
||||||
*.swp
|
|
||||||
*.swo
|
|
||||||
|
|
||||||
# Logs
|
# Test artifacts
|
||||||
logs/
|
|
||||||
*.log
|
|
||||||
|
|
||||||
# Local development
|
|
||||||
.env
|
|
||||||
.env.local
|
|
||||||
.env.*.local
|
|
||||||
|
|
||||||
# Docker
|
|
||||||
Dockerfile*
|
|
||||||
docker-compose*
|
|
||||||
.dockerignore
|
|
||||||
|
|
||||||
# Tests
|
|
||||||
tests/
|
|
||||||
test/
|
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
.coverage
|
|
||||||
htmlcov/
|
htmlcov/
|
||||||
|
.coverage*
|
||||||
|
|
||||||
# Documentation
|
# Other build/temp files
|
||||||
docs/
|
*.egg-info/
|
||||||
*.md
|
dist/
|
||||||
!README.md
|
build/
|
||||||
|
*.db # e.g., sqlite temp dbs
|
Loading…
Reference in New Issue
Block a user