25 lines
558 B
Plaintext
Executable File
25 lines
558 B
Plaintext
Executable File
.git
|
||
.gitignore
|
||
.venv
|
||
__pycache__
|
||
*.py[cod]
|
||
.pytest_cache
|
||
.mypy_cache
|
||
.ruff_cache
|
||
.env
|
||
.env.*
|
||
!.env.example
|
||
!.env.prod
|
||
# 算法子进程包需打进镜像(offline-batch / 5.15 main.py);仅忽略运行时 I/O
|
||
algorithm_subprocesses/**/input/*
|
||
!algorithm_subprocesses/**/input/.gitkeep
|
||
algorithm_subprocesses/**/output/*
|
||
!algorithm_subprocesses/**/output/.gitkeep
|
||
algorithm_subprocesses/**/data/*
|
||
!algorithm_subprocesses/**/data/.gitkeep
|
||
algorithm_subprocesses/**/*.mp4
|
||
algorithm_subprocesses/**/*.xlsx
|
||
algorithm_subprocesses/**/*.xls
|
||
*.md
|
||
.dockerignore
|