일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Spring
- docker
- AWS
- AWS S3
- 재귀함수가 뭔가요
- classmethod
- MySQL server on 'db' (115)
- github skyline
- METACLASS
- Django
- 프로그래머스
- depends_on
- springboot 3.0.0
- javascript
- 코딩테스트
- github
- python all testcode
- S3
- 2차 코딩테스트
- 우아한 테크코스 2차 합격
- TypeError: 'property' object is not iterable
- depends
- python
- OperationalError
- 갓재석
- EC2
- 우아한테크코스 2차
- DB
- docker-compose
- classproperty
목록Django (4)
hanbin.dev
docker-compose로 개발환경을 구축하기 위해 아래와 같이 docker-compose.dev.yml 파일을 작성했었다. version: "2" services: db: image: mysql:5.7.34 container_name: dorandoran_db ports: - "7001:3306" environment: - MYSQL_DATABASE=dorandoran_dev_db - MYSQL_USER=devuser - MYSQL_PASSWORD=password - MYSQL_ROOT_PASSWORD=password command: - --character-set-server=utf8mb4 - --collation-server=utf8mb4_unicode_ci healthcheck: test: ["..
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 ..
Django 이메일 verification을 구현하다가 소스를 까봤는데 아래와 같은 코드가 나왔다. # django/core/mail/message.py class EmailMessage: """A container for email information.""" content_subtype = 'plain' mixed_subtype = 'mixed' encoding = None # None => use settings default def __init__(self, subject='', body='', from_email=None, to=None, bcc=None, connection=None, attachments=None, headers=None, cc=None, reply_to=None): """ ..