~cytrogen/evi-run

evi-run/.dockerignore -rw-r--r-- 449 bytes
f9177ebb — Cytrogen fork: 定制修改 + 敏感数据清理 9 days ago
                                                                                
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
# Version control
.git
.gitignore

# Python
__pycache__
*.py[cod]
*$py.class
venv/
env/
.venv/
*.egg-info/

# Docker
docker-compose.yml
Dockerfile
Dockerfile_fastapi
.dockerignore

# Data volumes (mounted at runtime)
data/

# IDE / Editor
.idea/
.vscode/
*.swp
*.swo

# Docs & misc
*.md
LICENSE
docs/

# OS files
.DS_Store
__MACOSX/

# Tests
tests/
.pytest_cache/
.coverage

# CI/CD
.github/
.claude/

# Shell scripts (not needed in container)
*.sh