Skip to content

Commit 328ac28

Browse files
backend .dockerignore file added
1 parent 165a35f commit 328ac28

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Python cache
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
8+
# Environment variables
9+
.env
10+
.env.*
11+
!.env.sample
12+
13+
# Testing
14+
.pytest_cache/
15+
.coverage
16+
.coverage.*
17+
htmlcov/
18+
.tox/
19+
.nox/
20+
coverage.xml
21+
*.cover
22+
23+
# Development tools
24+
.vscode/
25+
.idea/
26+
*.swp
27+
*.swo
28+
*~
29+
30+
# Documentation
31+
*.md
32+
docs/
33+
34+
# Git
35+
.git/
36+
.gitignore
37+
.gitattributes
38+
39+
# Logs
40+
*.log
41+
logs/
42+
43+
# Development dependencies
44+
requirements-dev.txt
45+
46+
# OS files
47+
.DS_Store
48+
Thumbs.db
49+
50+
# Docker
51+
.dockerignore
52+
Dockerfile
53+
*.Dockerfile

0 commit comments

Comments
 (0)