장고 - 북마크 프로젝트_배포(heroku)
|
1. heroku 다운로드 및 설치
- macOS :
brew tap heroku/brew && brew install heroku
- Ubuntu 16+ :
sudo snap install -classic heroku
- Windows : https://devcenter.heroku.com/articles/heroku-cli#download-and-install 에서 다운로드 및 설치
2. 추가 모듈 설치
경로 : bookmark_project >
pip3 install [모듈명]
- dj-database-url : 데이터베이스 관련 옵션을 변수로 쉽게 접근할 수 있게 해주는 유틸리티
- gunicorn : wsgi용 미들웨어 –> 웹서버와 장고 사리의 다리 역할
- whitenoise : static 파일 서빙용 미들웨어
- psycopg2-binary : postgreSQL용 드라이버