git bash
mkdr 'dir name'
(inside dir)
pip install virtualenv
python -m venv venv
cd venv
cd ..
(turn on venv)
source venv/Scripts/activate
(check venv crated)
pip freeze -> to check requirements, nothing is stored
if you want to deactive venv
cd venv/Scripts/
deactivate -> check venv disapeared
https://www.youtube.com/watch?v=t9KNwBtE5-M
https://youtu.be/t9KNwBtE5-M
settings.py 이외에 my_setting.py를 따로 만들어 별도 파일로 관리하는 방법.
(프론트엔드와 통신위한 cors-headers, commentary, requirements.txt)
초기 세팅 리스트
https://hong-dev.github.io/django/initial_setting/
프로젝트 세팅시 gitignore을 자동으로 만들어주는 사이트