[1.0] 项目初始化 - 目录结构 + README + .gitignore
This commit is contained in:
44
.gitignore
vendored
Normal file
44
.gitignore
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
env/
|
||||
venv/
|
||||
.venv
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Config (contains secrets - use .example for templates)
|
||||
config/config.yaml
|
||||
config/*.local.yaml
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# Media temp
|
||||
/tmp/fam_media/
|
||||
*.mp4
|
||||
*.jpg
|
||||
*.jpeg
|
||||
*.png
|
||||
|
||||
# Streamlit
|
||||
.streamlit/secrets.toml
|
||||
|
||||
# Env
|
||||
.env
|
||||
.env.local
|
||||
Reference in New Issue
Block a user