일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- literal
- Terminal
- sensitive
- whitespace characters
- dollar sign
- bitbucket
- backslash
- New Line
- GIT
- 정규표현식
- 대소문자 구별
- Regexp
- MAC
- Homebrew
- whitespace
- mongo
- square brackets
- NoSQL
- databases
- Regular Expressions
- escaped
- Regex
- runserver
- Case sensitive
- point
- MySQL
- matches any character
- 딸라표시
- 꺽쇠
- MongoDB
Archives
- Today
- Total
목록Django (1)
Creaticalmind
Django <-> Mysql 연동방법
Django Mysql 연동방법 1. mysql설치 방법은 아래와 같습니다. https://creaticalmind.tistory.com/21?category=709469 2. django 프로젝트에서 pip를 이용해서 mysqlclient 설치 $ pip search mysqlclient $ pip install mysqlclient==1.4.1 3. django project 안에 있는 setting.py 수정 기본 세팅값을 MySQL 세팅값으로 변경 setting.py - 기본 세팅값 DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } - My..
Django
2019. 5. 20. 22:08