데이터베이스 (1) 썸네일형 리스트형 python django postgres 디비 연동 postgres 데이터베이스는 RDBMS 로 복잡한 쿼리연산, 확장성에 장점이 있고,초기 환경설정이 다소 까다로울수 있다는 단점이 있다. 윈도우환경에서 pycharm 개발툴 django 설치후로컬 서버(지금 사용하는 내컴퓨터)에 postgres 디비서버를 설치후database 생성했다. 아래는 django 프레임워크 소스에 postgres DB 를 연동하는 과정이다. pycharm 터미널에서pip install psycopg2실행해서 라이브러리 설치한다. 설정폴더의 settings.py, urls.py 2개의 소스를 작성한다.#settings.py from pathlib import Path # Build paths inside the project like this: BASE_DIR / 'subd.. 이전 1 다음