Remove DEVELOPMENT.md; update .gitignore to include additional ignored files; streamline and condense README.md.
This commit is contained in:
parent
1976a67a2a
commit
f6226f51e4
3 changed files with 201 additions and 641 deletions
33
.gitignore
vendored
33
.gitignore
vendored
|
|
@ -11,6 +11,11 @@ __pycache__/
|
|||
venv/
|
||||
.venv/
|
||||
ENV/
|
||||
env/
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
.eggs/
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
|
|
@ -18,10 +23,13 @@ ENV/
|
|||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.project
|
||||
.pydevproject
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.bak
|
||||
|
||||
# Docker
|
||||
docker-compose.override.yml
|
||||
|
|
@ -31,7 +39,28 @@ docker-compose.override.yml
|
|||
logs/
|
||||
|
||||
# SSL certificates (if stored locally)
|
||||
ssl/
|
||||
nginx/ssl/
|
||||
*.pem
|
||||
*.crt
|
||||
*.key
|
||||
*.key
|
||||
|
||||
# Data and cache
|
||||
data/
|
||||
*.cache
|
||||
.cache/
|
||||
|
||||
# Coverage
|
||||
.coverage
|
||||
htmlcov/
|
||||
coverage.xml
|
||||
*.cover
|
||||
|
||||
# MyPy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
|
||||
# Pytest
|
||||
.pytest_cache/
|
||||
|
||||
# Ruff
|
||||
.ruff_cache/
|
||||
Loading…
Add table
Add a link
Reference in a new issue