Spaces:
Running
on
Zero
Running
on
Zero
travahacker
commited on
Commit
·
05f656f
1
Parent(s):
6580489
chore: atualiza .gitignore para prevenir arquivos desnecessários
Browse files- .gitignore +54 -0
.gitignore
CHANGED
|
@@ -12,3 +12,57 @@ venv/
|
|
| 12 |
dist/
|
| 13 |
build/
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
dist/
|
| 13 |
build/
|
| 14 |
|
| 15 |
+
# Cursor/VSCode
|
| 16 |
+
*.code-workspace
|
| 17 |
+
.vscode/
|
| 18 |
+
.idea/
|
| 19 |
+
|
| 20 |
+
# Python
|
| 21 |
+
__pycache__/
|
| 22 |
+
*.py[cod]
|
| 23 |
+
*$py.class
|
| 24 |
+
*.so
|
| 25 |
+
.Python
|
| 26 |
+
env/
|
| 27 |
+
venv/
|
| 28 |
+
ENV/
|
| 29 |
+
build/
|
| 30 |
+
develop-eggs/
|
| 31 |
+
dist/
|
| 32 |
+
downloads/
|
| 33 |
+
eggs/
|
| 34 |
+
.eggs/
|
| 35 |
+
lib/
|
| 36 |
+
lib64/
|
| 37 |
+
parts/
|
| 38 |
+
sdist/
|
| 39 |
+
var/
|
| 40 |
+
wheels/
|
| 41 |
+
*.egg-info/
|
| 42 |
+
.installed.cfg
|
| 43 |
+
*.egg
|
| 44 |
+
|
| 45 |
+
# macOS
|
| 46 |
+
.DS_Store
|
| 47 |
+
.AppleDouble
|
| 48 |
+
.LSOverride
|
| 49 |
+
|
| 50 |
+
# Logs
|
| 51 |
+
*.log
|
| 52 |
+
|
| 53 |
+
# Scripts de desenvolvimento (avaliar caso a caso)
|
| 54 |
+
create_space.py
|
| 55 |
+
test_token.py
|
| 56 |
+
|
| 57 |
+
# Arquivos de debug/build
|
| 58 |
+
FORCE_REBUILD*.txt
|
| 59 |
+
STATUS_*.txt
|
| 60 |
+
TIMESTAMP_*.txt
|
| 61 |
+
config.txt
|
| 62 |
+
force_rebuild*.txt
|
| 63 |
+
rebuild_config.txt
|
| 64 |
+
|
| 65 |
+
# Dados locais (não commitados)
|
| 66 |
+
data/local/
|
| 67 |
+
*.local.csv
|
| 68 |
+
|