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