[To do list] Django Custom User + 이메일 인증 시스템 구현 가이드 2/2
·
과제
0. 환경변수 지정하기위의 요구사항에 따라 환경변수를 지정하고 settings.py에서 사용할 수 있도록 하세요.# .secret_config/secret.json{ "DJANGO_SECRET_KEY": "your secretkey here", "EMAIL": { "USER": "your email here", "PASSWORD": "your email password here" }}1. users / models.py 수정하기위의 요구사항을 참고하여 User 데이터베이스 모델 및 UserManager를 정의합니다.# users/models.pyfrom django.contrib.auth.models import AbstractBaseUser, PermissionsMixin, BaseUs..