-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.dockerignore
More file actions
75 lines (62 loc) · 1.17 KB
/
.dockerignore
File metadata and controls
75 lines (62 loc) · 1.17 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# ==============================================================================
# MeticAI Docker Build Ignore
# ==============================================================================
# Prevents unnecessary files from being sent to the Docker build context.
# Version control
.git
.gitignore
# IDE / Editor
.vscode
.idea
*.swp
*.swo
*~
# Documentation
*.md
!apps/mcp-server/README.md
LICENSE
docs/
# Test files
tests/
apps/server/test_*.py
apps/server/conftest.py
apps/server/pytest.ini
apps/server/requirements-test.txt
apps/web/e2e/
apps/web/playwright-report/
apps/web/test-results/
apps/web/playwright.config.ts
apps/web/vitest.config.ts
apps/web/TESTING.md
apps/web/ACCESSIBILITY_TESTING.md
apps/web/STORYBOOK.md
# Local data and logs
data/
!data/PourOverBase.json
!data/recipes/
!data/recipes/**
logs/
*.log
# Node modules (web builder stage installs fresh)
apps/web/node_modules/
apps/web/dist/
# Python cache
__pycache__/
*.pyc
*.pyo
# Environment files
.env
.env.*
# Temp files
tmp_*.py
*.tmp
# macOS / system
.DS_Store
macos-installer/
# Scripts (not needed in image)
scripts/
# GitHub
.github/
# Screenshots and reports
apps/web/screenshots/
apps/web/playwright-report/