BackEnd/PYTHON, Django

INSTALL PACKAGES and Setting

namhj 2019. 12. 4. 14:50
반응형

:: 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

반응형