일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- classmethod
- github
- S3
- AWS S3
- 코딩테스트
- 재귀함수가 뭔가요
- Spring
- docker-compose
- 프로그래머스
- 우아한테크코스 2차
- METACLASS
- MySQL server on 'db' (115)
- 우아한 테크코스 2차 합격
- javascript
- depends
- 갓재석
- springboot 3.0.0
- Django
- depends_on
- DB
- python all testcode
- OperationalError
- AWS
- python
- 2차 코딩테스트
- TypeError: 'property' object is not iterable
- docker
- github skyline
- EC2
- classproperty
목록Django (2)
hanbin.dev
Django 로 개발을 하던 중 auth 라는 이름을 가진 Custom app을 INSTALLED_APP에 추가하니 오류가 발생했다. 기존의 "django.contrib.auth" 앱과 중복되었기 때문이다. https://code.djangoproject.com/ticket/21562 #21562 (Bad things happen if you name your custom user app "auth") – Django Bad things happen if you name your custom user app "auth" Reported by: Charlie DeTar Owned by: nobody Component: Documentation Version: dev Severity: Normal Keywo..

Django로 이메일 전송을 구현하고 있는데 send_mail 함수에서 위와 같은 오류가 났다. 위 오류의 내용은 send_mail의 매개변수 from_email을 안 넘겨 줬다는 소리다. from django.core.mail import send_mail send_mail( subject="Activate your DoranDoran account.", message="Please Activate your account http://localhost:8000", recipient_list=[user_instance.user.email], fail_silently=False, ) 코드는 위와 같았는데, from_email 이 없다고 오류가 난다. 그런데 django.core.mail.send_mail ..