Spaces:
Running
Running
Create .gitignore
Browse files- .gitignore +232 -0
.gitignore
ADDED
@@ -0,0 +1,232 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ==========================================
|
2 |
+
# ARCHIVOS SENSIBLES - NUNCA SUBIR A GIT
|
3 |
+
# ==========================================
|
4 |
+
|
5 |
+
# Variables de entorno con claves secretas
|
6 |
+
.env
|
7 |
+
.env.local
|
8 |
+
.env.production
|
9 |
+
.env.staging
|
10 |
+
.env.development
|
11 |
+
|
12 |
+
# Base de datos local
|
13 |
+
*.db
|
14 |
+
*.sqlite
|
15 |
+
*.sqlite3
|
16 |
+
antiscam_pro.db
|
17 |
+
|
18 |
+
# Logs y archivos temporales
|
19 |
+
*.log
|
20 |
+
logs/
|
21 |
+
temp/
|
22 |
+
tmp/
|
23 |
+
|
24 |
+
# ==========================================
|
25 |
+
# PYTHON
|
26 |
+
# ==========================================
|
27 |
+
|
28 |
+
# Byte-compiled / optimized / DLL files
|
29 |
+
__pycache__/
|
30 |
+
*.py[cod]
|
31 |
+
*$py.class
|
32 |
+
|
33 |
+
# C extensions
|
34 |
+
*.so
|
35 |
+
|
36 |
+
# Distribution / packaging
|
37 |
+
.Python
|
38 |
+
build/
|
39 |
+
develop-eggs/
|
40 |
+
dist/
|
41 |
+
downloads/
|
42 |
+
eggs/
|
43 |
+
.eggs/
|
44 |
+
lib/
|
45 |
+
lib64/
|
46 |
+
parts/
|
47 |
+
sdist/
|
48 |
+
var/
|
49 |
+
wheels/
|
50 |
+
pip-wheel-metadata/
|
51 |
+
share/python-wheels/
|
52 |
+
*.egg-info/
|
53 |
+
.installed.cfg
|
54 |
+
*.egg
|
55 |
+
MANIFEST
|
56 |
+
|
57 |
+
# PyInstaller
|
58 |
+
*.manifest
|
59 |
+
*.spec
|
60 |
+
|
61 |
+
# Unit test / coverage reports
|
62 |
+
htmlcov/
|
63 |
+
.tox/
|
64 |
+
.nox/
|
65 |
+
.coverage
|
66 |
+
.coverage.*
|
67 |
+
.cache
|
68 |
+
nosetests.xml
|
69 |
+
coverage.xml
|
70 |
+
*.cover
|
71 |
+
*.py,cover
|
72 |
+
.hypothesis/
|
73 |
+
.pytest_cache/
|
74 |
+
|
75 |
+
# Environments
|
76 |
+
.env
|
77 |
+
.venv
|
78 |
+
env/
|
79 |
+
venv/
|
80 |
+
ENV/
|
81 |
+
env.bak/
|
82 |
+
venv.bak/
|
83 |
+
|
84 |
+
# ==========================================
|
85 |
+
# SISTEMA OPERATIVO
|
86 |
+
# ==========================================
|
87 |
+
|
88 |
+
# Windows
|
89 |
+
Thumbs.db
|
90 |
+
ehthumbs.db
|
91 |
+
Desktop.ini
|
92 |
+
$RECYCLE.BIN/
|
93 |
+
*.cab
|
94 |
+
*.msi
|
95 |
+
*.msix
|
96 |
+
*.msm
|
97 |
+
*.msp
|
98 |
+
*.lnk
|
99 |
+
|
100 |
+
# macOS
|
101 |
+
.DS_Store
|
102 |
+
.AppleDouble
|
103 |
+
.LSOverride
|
104 |
+
Icon
|
105 |
+
._*
|
106 |
+
.DocumentRevisions-V100
|
107 |
+
.fseventsd
|
108 |
+
.Spotlight-V100
|
109 |
+
.TemporaryItems
|
110 |
+
.Trashes
|
111 |
+
.VolumeIcon.icns
|
112 |
+
|
113 |
+
# Linux
|
114 |
+
*~
|
115 |
+
.fuse_hidden*
|
116 |
+
.directory
|
117 |
+
.Trash-*
|
118 |
+
.nfs*
|
119 |
+
|
120 |
+
# ==========================================
|
121 |
+
# EDITORES
|
122 |
+
# ==========================================
|
123 |
+
|
124 |
+
# VSCode
|
125 |
+
.vscode/
|
126 |
+
*.code-workspace
|
127 |
+
|
128 |
+
# PyCharm
|
129 |
+
.idea/
|
130 |
+
*.iws
|
131 |
+
*.iml
|
132 |
+
*.ipr
|
133 |
+
|
134 |
+
# Sublime Text
|
135 |
+
*.sublime-project
|
136 |
+
*.sublime-workspace
|
137 |
+
|
138 |
+
# ==========================================
|
139 |
+
# ARCHIVOS DE USUARIO SUBIDOS
|
140 |
+
# ==========================================
|
141 |
+
|
142 |
+
# Archivos subidos por usuarios
|
143 |
+
uploads/
|
144 |
+
user_files/
|
145 |
+
temp_files/
|
146 |
+
static/uploads/
|
147 |
+
|
148 |
+
# ==========================================
|
149 |
+
# MODELOS DE IA Y CACHE
|
150 |
+
# ==========================================
|
151 |
+
|
152 |
+
# Modelos de IA descargados
|
153 |
+
models/
|
154 |
+
*.model
|
155 |
+
*.bin
|
156 |
+
*.safetensors
|
157 |
+
|
158 |
+
# Cache de transformers
|
159 |
+
transformers_cache/
|
160 |
+
.cache/
|
161 |
+
|
162 |
+
# ==========================================
|
163 |
+
# CERTIFICADOS Y CLAVES
|
164 |
+
# ==========================================
|
165 |
+
|
166 |
+
# Certificados SSL
|
167 |
+
*.pem
|
168 |
+
*.key
|
169 |
+
*.crt
|
170 |
+
*.csr
|
171 |
+
*.p12
|
172 |
+
|
173 |
+
# Claves SSH
|
174 |
+
id_rsa
|
175 |
+
id_rsa.pub
|
176 |
+
*.ppk
|
177 |
+
|
178 |
+
# ==========================================
|
179 |
+
# CONFIGURACIONES LOCALES
|
180 |
+
# ==========================================
|
181 |
+
|
182 |
+
# Configuraciones específicas del desarrollador
|
183 |
+
local_config.py
|
184 |
+
config_local.json
|
185 |
+
settings_local.py
|
186 |
+
|
187 |
+
# ==========================================
|
188 |
+
# BACKUPS
|
189 |
+
# ==========================================
|
190 |
+
|
191 |
+
# Backups de base de datos
|
192 |
+
*.bak
|
193 |
+
*.backup
|
194 |
+
*.dump
|
195 |
+
*.sql
|
196 |
+
|
197 |
+
# ==========================================
|
198 |
+
# ARCHIVOS DE PRUEBA
|
199 |
+
# ==========================================
|
200 |
+
|
201 |
+
# Datos de prueba
|
202 |
+
test_data/
|
203 |
+
sample_files/
|
204 |
+
mock_data/
|
205 |
+
|
206 |
+
# ==========================================
|
207 |
+
# DOCUMENTACIÓN GENERADA
|
208 |
+
# ==========================================
|
209 |
+
|
210 |
+
# Documentación auto-generada
|
211 |
+
docs/_build/
|
212 |
+
site/
|
213 |
+
|
214 |
+
# ==========================================
|
215 |
+
# OTROS
|
216 |
+
# ==========================================
|
217 |
+
|
218 |
+
# Archivos de configuración del IDE
|
219 |
+
.project
|
220 |
+
.pydevproject
|
221 |
+
.settings/
|
222 |
+
|
223 |
+
# Archivos temporales del sistema
|
224 |
+
*.tmp
|
225 |
+
*.temp
|
226 |
+
*~
|
227 |
+
|
228 |
+
# Archivos comprimidos
|
229 |
+
*.zip
|
230 |
+
*.tar.gz
|
231 |
+
*.rar
|
232 |
+
*.7z
|