Add .dockerignore and update .gitignore to include .poetry directory

This commit is contained in:
William Valentin
2025-07-24 11:01:06 -07:00
parent 908b43055f
commit aed332d914
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
__pycache__/
*.spec
*.log
logs/
.vscode/
.venv/
.poetry/
# Ignore Python bytecode files
*.pyc
# Ignore build and distribution directories
build/
dist/
.gitea/

1
.gitignore vendored
View File

@@ -9,3 +9,4 @@ __pycache__/
logs/ logs/
.vscode/ .vscode/
.venv/ .venv/
.poetry/