IT와 일상다반사

django-postgres 연동하기. 본문

카테고리 없음

django-postgres 연동하기.

Ch-Phillip 2021. 3. 23. 21:19
반응형

1. postgres 연동client

pip install psycopg2 

 

 

settings.py

DATABASES = {

 

    'default': {

        'ENGINE''django.db.backends.postgresql',

        'NAME''postgres',

        'USER''postgres',

        'PASSWORD''postgres',

        'HOST''127.0.0.1',

        'PORT'5432,

    }

 

}

 

TIME_ZONE = 'Asia/Seoul'

반응형
Comments