Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfemir committed Dec 12, 2024
0 parents commit 3c37666
Show file tree
Hide file tree
Showing 137 changed files with 21,943 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[run]
branch = True
source = src

[report]
omit =
*/tests/*
*/__init__.py

# Show missing lines in report output
show_missing = False

exclude_lines =
pragma: no cover

[html]
# Directory where HTML reports will be saved
directory = htmlcov
46 changes: 46 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Extras That Shouldn't Be Here
.git/
.gitignore
.dockerignore
docker-compose*
Dockerfile
makefile
htmlcov/
coverage.xml
.coverage*
*.svg
frontend/node_modules/
bin/
*.bin

.vscode/
.ruff_cache/
*.dat
profile.svg

# Frontend
.DS_Store
/build
/.svelte-kit
/package
.example*

# Backend
logs/
settings.json
__pycache__
*.log
data
test*

# Jupyter Notebooks
.ipynb_checkpoints

# Environments
.env*
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
Loading

0 comments on commit 3c37666

Please sign in to comment.