We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2024df commit 388ef7fCopy full SHA for 388ef7f
.gitignore
@@ -1,13 +1,23 @@
1
-# ignorar pasta de saves (não deve ir pro GitHub)
+# ignorar pasta de saves e logs (não devem ir pro GitHub)
2
saves/**
3
logs/**
4
+
5
+# ignorar ambientes virtuais
6
+venv/**
7
8
+# ignorar pastas geradas pelo PyInstaller
9
+build/**
10
+dist/**
11
+*.spec
12
13
# ignorar pycache do Python
14
__pycache__/
-/models/__pycache__
15
+models/__pycache__/
16
17
# ignorar configs locais do VSCode
18
.vscode/
19
20
# ignorar arquivos temporários
-**.tmp
-**.log
21
+*.tmp
22
+*.log
23
+*.bak
0 commit comments