Showing
1 changed file
with
4 additions
and
4 deletions
1 | ## Building | 1 | ## Building |
2 | 2 | ||
3 | -# Python Version | 3 | +### Python Version |
4 | 4 | ||
5 | ~$ python3 --version | 5 | ~$ python3 --version |
6 | Python 3.8.2 | 6 | Python 3.8.2 |
7 | 7 | ||
8 | Python 가상환경 사용을 권장합니다. | 8 | Python 가상환경 사용을 권장합니다. |
9 | 9 | ||
10 | -# pip, django | 10 | +### pip, django |
11 | 11 | ||
12 | ~$ python3 -m pip install --upgrade pip | 12 | ~$ python3 -m pip install --upgrade pip |
13 | ~$ pip install django~=3.1.2 | 13 | ~$ pip install django~=3.1.2 |
14 | ... | 14 | ... |
15 | Successfully installed asgiref-3.2.10 django-3.1.2 pytz-2020.1 sqlparse-0.3.1 | 15 | Successfully installed asgiref-3.2.10 django-3.1.2 pytz-2020.1 sqlparse-0.3.1 |
16 | 16 | ||
17 | -# Database | 17 | +### Database |
18 | 18 | ||
19 | ~/smartdoorlock-backend$ python manage.py migrate | 19 | ~/smartdoorlock-backend$ python manage.py migrate |
20 | ~/smartdoorlock-backend$ python manage.py makemigrations | 20 | ~/smartdoorlock-backend$ python manage.py makemigrations |
21 | 21 | ||
22 | -# Run Server | 22 | +### Run Server |
23 | 23 | ||
24 | ~/smartdoorlock-backend$ python manage.py runserver | 24 | ~/smartdoorlock-backend$ python manage.py runserver |
25 | 25 | ... | ... |
-
Please register or login to post a comment