We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
현재는 개발 환경에서 4 가지 환경 변수가 필요합니다.
위의 환경변수의 기본값을 주어서 기동이 되게 하려고 합니다.
BEFORE EMAIL_HOST_PASSWORD = os.getenv("AWS_SES_PASSWORD") AFTER EMAIL_HOST_PASSWORD = os.getenv("AWS_SES_PASSWORD", default=False)
EMAIL_HOST_PASSWORD = os.getenv("AWS_SES_PASSWORD")
EMAIL_HOST_PASSWORD = os.getenv("AWS_SES_PASSWORD", default=False)
The text was updated successfully, but these errors were encountered:
golony6449
No branches or pull requests
현재는 개발 환경에서 4 가지 환경 변수가 필요합니다.
위의 환경변수의 기본값을 주어서 기동이 되게 하려고 합니다.
BEFORE
EMAIL_HOST_PASSWORD = os.getenv("AWS_SES_PASSWORD")
AFTER
EMAIL_HOST_PASSWORD = os.getenv("AWS_SES_PASSWORD", default=False)
The text was updated successfully, but these errors were encountered: