Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 610 Bytes

README.md

File metadata and controls

40 lines (31 loc) · 610 Bytes

openinfradays-2018

싷행 환경

  • python : 3.6.x

실행 방법

1. virtualenv 생성

$ virtualenv -p python3 venv
$ source venv/bin/activate

2. 의존 패키지 설치

$ pip3 install -r requirements.txt

3. DB 초기화

$ python manage.py makemigrations
$ python manage.py migrate

4. 관리자 생성

$ python manage.py createsuperuser

5. 메시지 파일 생성 / 컴파일

$ python manage.py makemessages
$ python manage.py compilemessages

6. static files 생성

$ python manage.py collectstatics