Spaces:
Sleeping
Sleeping
gitingore configuration
Browse files- .gitignore +37 -0
.gitignore
CHANGED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Fichiers générés par Python
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*.pyo
|
5 |
+
|
6 |
+
# Dossiers d'environnements virtuels
|
7 |
+
env/
|
8 |
+
venv/
|
9 |
+
.venv/
|
10 |
+
.env/
|
11 |
+
|
12 |
+
# Configurations d'éditeurs de code
|
13 |
+
.vscode/
|
14 |
+
.idea/
|
15 |
+
|
16 |
+
# Fichiers de logs
|
17 |
+
*.log
|
18 |
+
*.out
|
19 |
+
*.err
|
20 |
+
|
21 |
+
# Fichiers temporaires
|
22 |
+
*.tmp
|
23 |
+
*.swp
|
24 |
+
*.swo
|
25 |
+
*.bak
|
26 |
+
|
27 |
+
# Dépendances Python
|
28 |
+
pip-log.txt
|
29 |
+
pip-delete-this-directory.txt
|
30 |
+
|
31 |
+
# Fichiers de cache
|
32 |
+
.cache/
|
33 |
+
*.egg-info/
|
34 |
+
.eggs/
|
35 |
+
|
36 |
+
# Profiling data
|
37 |
+
profiler.log
|