본문 바로가기

BackEnd/PYTHON, Django

INSTALL PACKAGES and Setting

반응형

:: Install

> pipenv --three
> pipenv shell
> pipenv install -r requirements/local.txt

:: Files
local.txt
base.txt

:: Setting
config
L settings
    L base.py 
    L local.py
    L production.py 

base.py, local.py => Run on Application
production.py => Run on Server

반응형

'BackEnd > PYTHON, Django' 카테고리의 다른 글

Models & Migration  (0) 2019.12.04
Django ORM  (0) 2019.12.04
CookieCutter  (0) 2019.12.04
Parts of Django  (0) 2019.12.04
Virtual Environments  (0) 2019.12.04