Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 456 Bytes

File metadata and controls

10 lines (9 loc) · 456 Bytes

Django_study

Django study repository from the likelion🦁

How to ?

  • 가상환경 설치 : python -m venv [가상환경명] : 가상환경 만들기
  • 가상환경 실행 : source [가상환경명]/bin/activate (macOS)
  • 장고 설치 : pip3 install django
  • 장고이용해서 프로젝트 만들기 : django-admin startproject [프로젝트명]
  • App 만들기 : python manage.py startapp [앱이름]
  • 서버 실행 : python manage.py runserver