From c892fc200e069835c004f70c374f9241b8339e9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 15 Nov 2023 21:57:55 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20missing=20dotenv=20variabl?= =?UTF-8?q?es=20(#554)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/.env | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/.env b/src/.env index b18c561..78a3dd6 100644 --- a/src/.env +++ b/src/.env @@ -15,17 +15,17 @@ DOCKER_IMAGE_CELERYWORKER=celery DOCKER_IMAGE_FRONTEND=frontend # Backend -BACKEND_CORS_ORIGINS= +BACKEND_CORS_ORIGINS="[\"http://localhost\", \"http://localhost:4200\", \"http://localhost:3000\", \"http://localhost:8080\", \"https://localhost\", \"https://localhost:4200\", \"https://localhost:3000\", \"https://localhost:8080\", \"http://local.dockertoolbox.tiangolo.com\", \"http://localhost.tiangolo.com\"]" PROJECT_NAME= SECRET_KEY=changethis FIRST_SUPERUSER=admin@example.com FIRST_SUPERUSER_PASSWORD=changethis SMTP_TLS=True -SMTP_PORT= +SMTP_PORT=587 SMTP_HOST= SMTP_USER= SMTP_PASSWORD= -EMAILS_FROM_EMAIL= +EMAILS_FROM_EMAIL=info@example.com USERS_OPEN_REGISTRATION=False