forked from marketcalls/openalgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
65 lines (54 loc) · 958 Bytes
/
.dockerignore
File metadata and controls
65 lines (54 loc) · 958 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Ignore stateful content (these will be generated again)
db/
log/
# Byte-compiled / cache files
__pycache__/
*.py[cod]
*.pyo
*.pyd
# Virtual environments
env/
venv/
.venv/
.Python
# Environment and secrets
.env
!.sample.env
secrets.*
*.key
*.pem
# SQLite, DuckDB and runtime files
*.sqlite
*.sqlite3
*.db
*.duckdb
*.log
*.sock
# Version control
.git/
.gitignore
# Docker and CI/CD
Dockerfile
docker-compose.yml
.docker/
.dockerignore
# IDE config
.vscode/
.idea/
# Frontend development files (dist is INCLUDED - pre-built for community)
frontend/node_modules/
frontend/.vite/
frontend/coverage/
frontend/test-results/
frontend/playwright-report/
frontend/*.tsbuildinfo
# Frontend test files (not needed in production)
frontend/e2e/
frontend/src/test/
frontend/vitest.config.ts
frontend/playwright.config.ts
# Frontend docs (developer reference, not needed in production)
frontend/docs/
# Project docs (EXPLICITLY INCLUDED)
!docs/
!frontend/dist/