47 lines
489 B
Plaintext
47 lines
489 B
Plaintext
# secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.python-version
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# alembic / local db artifacts
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# local storage / runtime data
|
|
storage/
|
|
postgres-data/
|
|
uploads/
|
|
artifacts/
|
|
|
|
# editors / os
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# logs
|
|
*.log
|
|
|
|
# local ad-hoc fixtures in project root
|
|
dirty.svg
|
|
fake.svg
|
|
not_svg_root.svg
|
|
sample-contract.svg
|
|
sample-map.svg
|
|
test.svg
|
|
test.txt
|