From aed332d9149da45b8963086bad93bf313c6f5cbf Mon Sep 17 00:00:00 2001 From: William Valentin Date: Thu, 24 Jul 2025 11:01:06 -0700 Subject: [PATCH] Add .dockerignore and update .gitignore to include .poetry directory --- .dockerignore | 13 +++++++++++++ .gitignore | 1 + 2 files changed, 14 insertions(+) diff --git a/.dockerignore b/.dockerignore index e69de29..b432c40 100644 --- a/.dockerignore +++ b/.dockerignore @@ -0,0 +1,13 @@ +__pycache__/ +*.spec +*.log +logs/ +.vscode/ +.venv/ +.poetry/ +# Ignore Python bytecode files +*.pyc +# Ignore build and distribution directories +build/ +dist/ +.gitea/ diff --git a/.gitignore b/.gitignore index 25472ba..e6df785 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ __pycache__/ logs/ .vscode/ .venv/ +.poetry/