Files
dbx-corm/.dockerignore
king 6e438344d0 init: dbx-corm 프로젝트 Docker 기반 마이그레이션
주요 변경사항:
- DB 접속정보를 환경변수(.env) 방식으로 분리
- orderlist_app → orderlist_db 변경 (main.py, routers/returns.py)
- 네이버/카페24 API 키도 환경변수로 분리
- Dockerfile / docker-compose.yml 작성 (외부 PostgreSQL 네트워크 연결)
- .gitignore: 민감파일(.env, cafe24_tokens.json, manual-ordering.json) 제외
- 불필요 파일 정리 (venv, __pycache__, 일회성 스크립트, xlsx 등)
- README.md / .env.example / push_to_gitea.bat 추가

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-24 15:11:34 +09:00

40 lines
513 B
Plaintext

__pycache__/
*.pyc
*.pyo
venv/
env/
.venv/
.git/
.gitignore
.dockerignore
.vscode/
.idea/
.antigravitycli/
.pytest_cache/
build/
dist/
# 환경변수는 env_file로 전달
.env
# 민감정보는 별도 마운트
# (cafe24_tokens.json, manual-ordering.json은 컨테이너 안에는 있어야 하므로 제외 안 함)
# 로컬 데이터
*.db
*.dat
sync.ffs_db
*.zip
*.log
# 문서/스크립트
README.md
docker-compose.yml
docker-compose*.yml
push_to_gitea.bat
deploy.bat
deploy.ps1
start.bat
test.ps1
*.xlsx