Spaces:
Running
Running
Update .gitattributes
Browse files- .gitattributes +73 -28
.gitattributes
CHANGED
@@ -1,28 +1,73 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
*.
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
*.
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
*.
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python bytecode
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
|
6 |
+
# Distribution / packaging
|
7 |
+
dist/
|
8 |
+
build/
|
9 |
+
*.egg-info/
|
10 |
+
|
11 |
+
# Virtual environments
|
12 |
+
venv/
|
13 |
+
env/
|
14 |
+
ENV/
|
15 |
+
|
16 |
+
# Environment variables
|
17 |
+
.env
|
18 |
+
.env.local
|
19 |
+
.env.development
|
20 |
+
.env.test
|
21 |
+
.env.production
|
22 |
+
|
23 |
+
# Test files
|
24 |
+
test_*.py
|
25 |
+
*_test.py
|
26 |
+
tests/
|
27 |
+
pytest_cache/
|
28 |
+
.pytest_cache/
|
29 |
+
.coverage
|
30 |
+
htmlcov/
|
31 |
+
|
32 |
+
# Logs
|
33 |
+
*.log
|
34 |
+
logs/
|
35 |
+
|
36 |
+
# IDE specific files
|
37 |
+
.idea/
|
38 |
+
.vscode/
|
39 |
+
*.swp
|
40 |
+
*.swo
|
41 |
+
.DS_Store
|
42 |
+
|
43 |
+
# Temporary files
|
44 |
+
*.tmp
|
45 |
+
*.bak
|
46 |
+
temp/
|
47 |
+
tmp/
|
48 |
+
|
49 |
+
# Database files
|
50 |
+
*.db
|
51 |
+
*.sqlite
|
52 |
+
*.sqlite3
|
53 |
+
|
54 |
+
# Jupyter Notebook
|
55 |
+
.ipynb_checkpoints
|
56 |
+
|
57 |
+
# Local development files
|
58 |
+
local_settings.py
|
59 |
+
local_config.py
|
60 |
+
dev_config.py
|
61 |
+
|
62 |
+
# Dependency management
|
63 |
+
pip-log.txt
|
64 |
+
pip-delete-this-directory.txt
|
65 |
+
|
66 |
+
# Documentation
|
67 |
+
docs/_build/
|
68 |
+
site/
|
69 |
+
|
70 |
+
# Authentication test files
|
71 |
+
test_auth.py
|
72 |
+
test_token.py
|
73 |
+
test_db_connection.py
|