From 48b2d7f55acd0a061a53fcd93bac5a3842682034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vitor=20Hugo=20Belorio=20Sim=C3=A3o?= Date: Thu, 19 Feb 2026 08:45:03 -0300 Subject: [PATCH] :wrench: chore: Adicionando o gitignore para o projeto. --- .gitignore | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c5f93a9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,71 @@ +# Ambientes virtuais Python +venv/ +env/ +.venv/ +ENV/ +env.bak/ +venv.bak/ + +# Cache e compilação Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Testes +.pytest_cache/ +.coverage +htmlcov/ +.tox/ + +# Variáveis de ambiente +.env +.env.local +.env.*.local + +# IDEs +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store +Thumbs.db + +# Banco de dados +*.db +*.sqlite +*.sqlite3 + +# Logs +*.log +logs/ + +# Arquivos temporários +.tmp/ +tmp/ +temp/ +*.tmp + +# Arquivos do sistema +.DS_Store +Thumbs.db