Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bbonkr/learn-django
장고를 배워요
https://github.com/bbonkr/learn-django
Last synced: 25 days ago
JSON representation
장고를 배워요
- Host: GitHub
- URL: https://github.com/bbonkr/learn-django
- Owner: bbonkr
- License: mit
- Created: 2019-08-24T05:56:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-10T21:53:31.000Z (over 3 years ago)
- Last Synced: 2024-04-09T21:56:08.249Z (7 months ago)
- Language: Python
- Homepage: http://bbon.pythonanywhere.com/
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# learn-django
장고를 배워요.
[장고걸스 튜토리얼 (Django Girls Tutorial)](https://tutorial.djangogirls.org/ko/)
따라서 작성하니, 웹사이트가 생겼습니다.
### 가상환경
가상환경 작성
```bash
$ python -m venv devenv
```가상환경 활성
```bash
$ ./devenv/Scripts/activate
```pip 업데이트
```bash
$ python -m pip install --upgrade pip
```### 패키지 목록
```bash
$ pip freeze > requirements.txt
```### 패키지 설치
```bash
$ pip install -r ./requirements.txt
```