원하는 경로에 프로젝트 폴더 drf_week2
만들기
VSCode에 해당 폴더 열기
가상환경 세팅하기
PS C:\Users\gracegoh\Desktop\drf_week2> python -m venv venv
#4. 원래 우리가 쓰는 python library들이 많이 나온다.
PS C:\Users\gracegoh\Desktop\drf_1025> pip list
Package Version
---------------------------- ---------
-jango 4.1.1
absl-py 1.3.0
asgiref 3.5.2
astroid 2.12.9
astunparse 1.6.3
backports.zoneinfo 0.2.1
cachetools 5.2.0
.
.
.
그러나 프로젝트에서 쓰는 lib와 ver은 다를 수 있기 때문에 가상환경을 만들었다.
5. 가상환경을 켠다.
PS C:\Users\gracegoh\Desktop\drf_1025> venv/scripts/activate
#6. 아무것도 설치되어 있지 않다면 가상환경이 정상 작동하는 것.
(venv) PS C:\Users\gracegoh\Desktop\drf_1025> pip list
---------- -------
pip 20.2.3
setuptools 49.2.1
간혹 환경변수 설정을 잘못해서 가상환경을 켠 후 pip list
를 했는데도 원래 것들이 계속 나오는 경우가 있다. 이는 상위 폴더에 가상환경이 켜져 있거나 conda 등을 쓸 때 가상환경이 꼬인 경우이다.
pip install djangorestframework
# 8.
pip install drf-yasg
가상환경을 쓰고 있으면 -u 명령어는 빼도 된다.
10. 설치한 환경을 requirements.txt에 적는 것까지 해주면
pip freeze > requirements.txt
#11. 프로젝트 공유시 팀원들이 설치할 수 있다.
pip install -r requirements.txt
#12. django 프로젝트 생성하기 .(현재 폴더에서)
django-admin startproject drf_week2 .
⭐ 마지막 .
을 꼭 찍어야 root 폴더에서 manage.py가 바로 보인다.
.
을 누락하면 폴더가 한 단계 더 안으로 들어간다.
Wndows, Macos, Python, Django, VisualStudioCode로 검색
> root 폴더에 .gitignore
생성 후 붙여넣기 하면
자동으로 .venv(가상환경), .env 등이 들어와 있다.
(venv) PS C:\Users\gracegoh\Desktop\drf_1025> git init
Initialized empty Git repository in C:/Users/gracegoh/Desktop/drf_1025/.git/
(venv) PS C:\Users\gracegoh\Desktop\drf_week2> git add .
(venv) PS C:\Users\gracegoh\Desktop\drf_week2> git remote add origin https://github.com/gracegoh924/drf_week2.git
(venv) PS C:\Users\gracegoh\Desktop\drf_week2> git commit -m 'init project'
[master (root-commit) 4758c3d] init project
8 files changed, 535 insertions(+)
create mode 100644 drf_week2/__init__.py
create mode 100644 drf_week2/asgi.py
create mode 100644 drf_week2/settings.py
create mode 100644 drf_week2/urls.py
create mode 100644 drf_week2/wsgi.py
create mode 100644 manage.py
create mode 100644 requirements.txt
# 오류
(venv) PS C:\Users\gracegoh\Desktop\drf_week2> git push origin main
error: src refspec main does not match any
error: failed to push some refs to 'https://github.com/gracegoh924/drf_week2.git'
(venv) PS C:\Users\gracegoh\Desktop\drf_week2> git branch -M main
(venv) PS C:\Users\gracegoh\Desktop\drf_week2> git push origin main
Enumerating objects: 11, done.
Counting objects: 100% (11/11), done.
Delta compression using up to 6 threads
Compressing objects: 100% (10/10), done.
Writing objects: 100% (11/11), 5.19 KiB | 1.73 MiB/s, done.
Total 11 (delta 1), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (1/1), done.
To https://github.com/gracegoh924/drf_week2.git
* [new branch] main -> main
INSTALLED_APPS = ['rest_framework',]
LANGUAGE_CODE = 'ko-kr'
TIME_ZONE = 'Asia/Seoul'
를 추가한다.SECRET_KEY
를 암호화한다.# settings.py
from pathlib import Path
import os
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = os.environ.get("SECRET_KEY")
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework', # 추가
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'drf_week2.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'drf_week2.wsgi.application'
# Database
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
# Password validation
# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/4.1/topics/i18n/
LANGUAGE_CODE = 'ko-kr' # 추가
TIME_ZONE = 'Asia/Seoul' # 추가
USE_I18N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/4.1/howto/static-files/
STATIC_URL = 'static/'
# Default primary key field type
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
python manage.py runserver