Spaces:
Runtime error
Runtime error
Upload .gitignore
Browse files- .gitignore +60 -0
.gitignore
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
# Python bytecode
|
3 |
+
__pycache__/
|
4 |
+
*.py[cod]
|
5 |
+
*$py.class
|
6 |
+
|
7 |
+
# Distribution / packaging
|
8 |
+
dist/
|
9 |
+
build/
|
10 |
+
*.egg-info/
|
11 |
+
*.egg
|
12 |
+
|
13 |
+
# Virtual environments
|
14 |
+
venv/
|
15 |
+
env/
|
16 |
+
.env/
|
17 |
+
.venv/
|
18 |
+
my_env/
|
19 |
+
|
20 |
+
# IDE specific files
|
21 |
+
.idea/
|
22 |
+
.vscode/
|
23 |
+
*.swp
|
24 |
+
*.swo
|
25 |
+
.DS_Store
|
26 |
+
|
27 |
+
# Unit test / coverage reports
|
28 |
+
htmlcov/
|
29 |
+
.tox/
|
30 |
+
.coverage
|
31 |
+
.coverage.*
|
32 |
+
.cache
|
33 |
+
coverage.xml
|
34 |
+
*.cover
|
35 |
+
.pytest_cache/
|
36 |
+
|
37 |
+
# Jupyter Notebook
|
38 |
+
.ipynb_checkpoints
|
39 |
+
|
40 |
+
# Environment variables
|
41 |
+
.env
|
42 |
+
.env.local
|
43 |
+
.env.*.local
|
44 |
+
|
45 |
+
# Logs
|
46 |
+
*.log
|
47 |
+
|
48 |
+
# Database
|
49 |
+
*.db
|
50 |
+
*.sqlite3
|
51 |
+
|
52 |
+
# Local development settings
|
53 |
+
local_settings.py
|
54 |
+
|
55 |
+
# Documentation
|
56 |
+
docs/_build/
|
57 |
+
|
58 |
+
# Dependencies
|
59 |
+
pip-log.txt
|
60 |
+
pip-delete-this-directory.txt
|