Open
Conversation
- requirements.txt: Python 의존성 관리 - .gitignore: 민감한 파일 제외 - settings_production.py: 환경 변수 기반 프로덕션 설정 - django.wsgi: 향상된 WSGI 설정 - .env.example: 환경 변수 템플릿 - Procfile: Heroku 등 클라우드 플랫폼 배포 지원 - Dockerfile & docker-compose.yml: Docker 배포 지원 - nginx.conf: Nginx 리버스 프록시 설정 - Makefile: 일반 작업 자동화 - DEPLOYMENT.md: 상세한 배포 가이드 - runtime.txt: Python 버전 명시 보안 개선: - SECRET_KEY를 환경 변수로 관리 - DEBUG를 프로덕션에서 비활성화 - ALLOWED_HOSTS 설정 추가 - 데이터베이스 자격 증명을 환경 변수로 관리
webisteme
approved these changes
Nov 17, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
보안 개선: