파이썬/장고 웹서비스 개발 완벽 가이드 with 리액트

    [Django] 프로젝트 세팅 ( + React )

    1. initial setting 1-1. 가상환경 python -m venv venv를 이용하여 가상환경으로 만들기. 1-2. git init 적용 git init을 이용하여 git 활성화 .gitignore 생성하여 밑에 있는 url 복사. https://www.toptal.com/developers/gitignore/api/django 1-3. backend - django 설치. pip install django 명령어를 이용한 django 설치. python -m django startproject python manage.py migrate python manage.py createsuperuser settigs.py 설정 # react에서 관리하는 파일 제외하고 css파일 등을 관리. STA..