forked from RamiAwar/dataline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
48 lines (44 loc) · 728 Bytes
/
.dockerignore
File metadata and controls
48 lines (44 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
backend/__pycache__
backend/*.pyc
backend/*.pyo
backend/*.pyd
backend/.Python
backend/env
backend/build
backend/dist
backend/pip-log.txt
backend/pip-delete-this-directory.txt
backend/.tox
backend/.coverage
backend/.coverage.*
backend/.cache
backend/.venv
backend/.vscode
backend/.mypy_cache
backend/.pytest_cache
backend/.hypothesis
backend/nosetests.xml
backend/coverage.xml
backend/*.cover
backend/*.log
backend/.git
# Don't need tests or hooks
*/tests
hooks
./images
# For bundling the windows app
!./images/logo.ico
# Exclude bruno
*/bruno
# Ignore all SQLite DBs, except for sample DBs
**/*.sqlite3
!**/samples/*.sqlite3
*/.storybook
*/node_modules/
*/dist
*/.git
*/npm-debug.log
*/.coverage
*/.coverage.*
*/.env
*/.aws