Spaces:
Build error
Build error
Rename .gitignore to .dockerignore
#2
by
Thebull
- opened
- .dockerignore +1 -0
- .gitignore +0 -38
.dockerignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Ignore common files and directories .DS_Store Thumbs.db .venv/ .vscode/ .idea/ .git/ __pycache__/ *.pyc *.pyo *.pyd *.so *.dylib *.dll *.img *.bin * .exe *.obj *.pdb *.lock *.log *.tmp *.orig *.rej noxfile.py tox.ini .coverage htmlcov/ .tox/ .eggs/ .env .env.local .nyc_output/ node_modules/ bower_components/ # Ignore test files tests/ test/ Tests/ Test/ coverage.xml # Ignore documentation folder docs/ # Ignore migration files migrations/ # Ignore Python package files dist/ build/ develop-eggs/ . egg-info/ *.egg-info/ *.zip *.tar.gz *.whl *.spdx MANIFEST # Ignore IDE configuration files .project .classpath .cproject .settings/ .idea/ *.sublime-workspace * .tmTheme *.tmPreferences *.code-workspace *.idea # Ignore Swagger UI files swagger-ui/
|
.gitignore
DELETED
@@ -1,38 +0,0 @@
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|