forked from ethyca/fides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
60 lines (51 loc) · 837 Bytes
/
.dockerignore
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
49
50
51
52
53
54
55
56
57
58
59
60
# Ignore existing build artifacts
build/
dist/
src/fides.egg-info/
src/fides/ui-build/
src/ui-build/
# Frontend
**/node_modules
**/.next
**/.eslintrc.json
**/.jest.config.js
**/jest.config.jest
**/.prettierignore
**/.prettierrc.json
**/__tests__
**/npm-debug.log
**/*__mocks__
# Ignore Python-Specific Files
**/.mypy_cache/
**/.nox/
**/.pytest_cache/
**/__pycache__/
**/.coverage
**/*.pyc
**/*.pyo
**/*.pyd
# pyenv
.python-version
# Environments
**/.env
**/.venv
**/env/
**/venv/
# Editors
**/.vscode/
**/.idea/
# the docs directory is needed when building the docs container so it can't be in the
# .dockerignore
# docs/
# Ignore dev files
.gitignore
.github/
.devcontainer/
# Ignore cypress artifacts
**/videos/
**/screenshots/
**/.DS_Store
# Dev files
.pre-commit-config.yaml
docker/docker-compose.minimal-config.yml
.fides/