기본 설정
python -m venv venv
source venv/Scripts/Activate
pip install django
pip install djangorestframework
pip freeze > requirements.txt
>>> pip install -r requirements.txt
프로젝트 시작
django-admin startproject drf_week2 .
>>> . 으로 현재 폴더에서 프로젝트를 만들어 manage.py가 보이도록
깃에 올리기
.gitignore 생성
>>> .venv가 들어가 있어야 함
git init
git add .
git remote add origin <URL>
git commit -m "커밋메시지"
git push origin main
https://www.toptal.com/developers/gitignore
REST Framework 추가 설정
settings.py:
INSTALLED_APPS = [
...
'rest_framework',
]
ANGUAGE_CODE = 'ko-kr'
TIME_ZONE = 'Asia/Seoul'
python manage.py runserver
https://www.django-rest-framework.org/#installation
git remote : 리모트 저장소 확인
git remote -v : 단축이름과 URL을 함께 확인
git remote add <단축이름> <URL> : 워킹 디렉토리에 새 리모트 저장소 추가
git remote rename : 리모트 저장소 이름 변경
git remote remove, git remote rm : 리모트 저장소 삭제
'Django' 카테고리의 다른 글
파이썬 장고 실무 심화 2주차 2_serializer, GET, POST (3) | 2023.04.19 |
---|---|
파이썬 장고 실무 심화 2주차 1_api view, response (0) | 2023.04.19 |
파이썬 장고 실무 심화 1주차_DRF, HTTP (10) | 2023.04.18 |
HTTP response status codes 상태 코드 (0) | 2023.04.18 |
Django 이미지 파일 삭제 cleanup (2) | 2023.04.16 |