feat: initial commit - unified FGTools from static, weather, mattermost-noti
This commit is contained in:
83
.gitignore
vendored
Normal file
83
.gitignore
vendored
Normal file
@ -0,0 +1,83 @@
|
||||
# ===================================================================
|
||||
# .gitignore - FGTools
|
||||
# ===================================================================
|
||||
# Git 추적에서 제외할 파일 및 폴더 목록
|
||||
# ===================================================================
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# 가상환경
|
||||
venv/
|
||||
.venv/
|
||||
ENV/
|
||||
env/
|
||||
.env
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# 테스트/커버리지
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
coverage.xml
|
||||
*.cover
|
||||
|
||||
# 로그
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# 데이터 파일
|
||||
data/
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# 임시 파일
|
||||
tmp/
|
||||
temp/
|
||||
*.tmp
|
||||
*.bak
|
||||
|
||||
# 업로드/출력 폴더
|
||||
uploads/
|
||||
output/
|
||||
|
||||
# OS 파일
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# 시크릿 파일 (절대 커밋 금지)
|
||||
.env
|
||||
*.pem
|
||||
*.key
|
||||
service-account-credentials.json
|
||||
config.yaml
|
||||
|
||||
# Docker 볼륨
|
||||
db_data/
|
||||
Reference in New Issue
Block a user