feat: 프로젝트 기본 구조 구축
This commit is contained in:
17
.env.example
Normal file
17
.env.example
Normal file
@@ -0,0 +1,17 @@
|
||||
# Django 설정
|
||||
DJANGO_SECRET_KEY=your-secret-key-here
|
||||
DJANGO_DEBUG=False
|
||||
DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1
|
||||
|
||||
# 환경 설정
|
||||
DJANGO_ENV=production
|
||||
|
||||
# 데이터베이스 (PostgreSQL 사용 시)
|
||||
# DATABASE_URL=postgresql://user:password@localhost:5432/dbname
|
||||
|
||||
# 정적 파일
|
||||
STATIC_ROOT=/app/staticfiles
|
||||
STATIC_URL=/static/
|
||||
|
||||
# 타임존
|
||||
TIME_ZONE=Asia/Seoul
|
||||
Reference in New Issue
Block a user