Spaces:
Sleeping
Sleeping
Kota Takahashi
commited on
Commit
•
a46a105
1
Parent(s):
4545e7d
ファーストコミット
Browse files- .gitignore +37 -0
.gitignore
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Byte-compiled / optimized / DLL files
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
|
6 |
+
# Caches and logs
|
7 |
+
*.log
|
8 |
+
logs/
|
9 |
+
*.cache/
|
10 |
+
|
11 |
+
# Environment variables
|
12 |
+
.env
|
13 |
+
|
14 |
+
# Static files (usually collected by Django's collectstatic)
|
15 |
+
/static/
|
16 |
+
|
17 |
+
# Media files
|
18 |
+
/media/
|
19 |
+
|
20 |
+
# Database
|
21 |
+
*.sqlite3
|
22 |
+
|
23 |
+
# IDE specific files
|
24 |
+
.idea/
|
25 |
+
.vscode/
|
26 |
+
|
27 |
+
# Dependency directories
|
28 |
+
venv/
|
29 |
+
env/
|
30 |
+
|
31 |
+
# Compiled Python files
|
32 |
+
*.pyc
|
33 |
+
*.pyo
|
34 |
+
*.pyd
|
35 |
+
|
36 |
+
# macOS
|
37 |
+
.DS_Store
|