fix email_url

dev
timofejmalinin 3 years ago
parent 3d7c241e7d
commit 1407b1a3af

@ -33,6 +33,7 @@ services:
environment:
<<: *postgres-variables
<<: *django-variables
<<: *frontend-variables
volumes:
- .:/code
- ./django_static/:/code/django_static/

@ -156,7 +156,7 @@ EMAIL_PORT = 587 #new
EMAIL_HOST_USER = 'noreply@spatiality.website' #new
EMAIL_HOST_PASSWORD = "spatialitypass321" #new
EMAIL_USE_TLS = True #new
FRONTEND_URL = 'https://app.property.spatiality.website/'
FRONTEND_URL = os.getenv('REACT_APP_DOMAIN_URL', 'http://localhost:3000/')
REST_REGISTRATION = {
'REGISTER_VERIFICATION_ENABLED': True,
'RESET_PASSWORD_VERIFICATION_ENABLED': False,

Loading…
Cancel
Save