Spaces:
Build error
Build error
Create .gitignore
Browse files- .gitignore +38 -0
.gitignore
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# PyCharm project files
|
2 |
+
.idea
|
3 |
+
|
4 |
+
# Virtual Environment folders
|
5 |
+
venv/
|
6 |
+
.env
|
7 |
+
.env.local
|
8 |
+
|
9 |
+
Log files
|
10 |
+
logs/
|
11 |
+
|
12 |
+
Instance folder for Flask application
|
13 |
+
instance/
|
14 |
+
|
15 |
+
SQLite database file
|
16 |
+
*.sqlite3
|
17 |
+
|
18 |
+
Byte-compiled / optimized / DLL files
|
19 |
+
pycache/
|
20 |
+
*.py[cod]
|
21 |
+
*$py.class
|
22 |
+
|
23 |
+
Cache files for some modules
|
24 |
+
*.js.map
|
25 |
+
*.css.map
|
26 |
+
|
27 |
+
Coverage reports
|
28 |
+
htmlcov/
|
29 |
+
.coverage
|
30 |
+
|
31 |
+
Distribution / packaging files
|
32 |
+
dist/
|
33 |
+
build/
|
34 |
+
develop-eggs/
|
35 |
+
. egg-info/
|
36 |
+
|
37 |
+
Local settings (development only)
|
38 |
+
local_settings.py
|