1. 필요 라이브러리 설치 먼저 라이브러리를 설치합니다. pip install django-cors-headers gunicorn psycopg2-binary dj-database-url whitenoise - django-cors-headers : cors 에러 방지 - gunicorn : 배포를 위한 도구 - psycopg2-binary, dj-database-url : Heroku에서 사용하는 DB postgresql - whitenoise : 정적 파일의 사용을 돕는 미들웨어 1) pip freeze > requirements.txt : 패키지 의존성 관련 텍스트 파일 저장(위치:root 폴더) 2) runtime.txt 파일 열어서 python-3.9.4 입력 후 저장 : python버전 명시(..