diff --git a/.env b/.env index a83cb91b63..106ac8128b 100644 --- a/.env +++ b/.env @@ -5,8 +5,8 @@ DOMAIN=localhost # Environment: local, staging, production ENVIRONMENT=local -PROJECT_NAME="wysehub" -STACK_NAME=wysehub +PROJECT_NAME="Full Stack FastAPI Project" +STACK_NAME=full-stack-fastapi-project # Backend BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173,http://localhost.tiangolo.com" @@ -31,9 +31,8 @@ POSTGRES_DB=app POSTGRES_USER=postgres POSTGRES_PASSWORD=changethis - SENTRY_DSN= # Configure these with your own Docker registry images DOCKER_IMAGE_BACKEND=backend -DOCKER_IMAGE_FRONTEND=frontend +DOCKER_IMAGE_FRONTEND=frontend \ No newline at end of file diff --git a/docker-compose.override.yml b/docker-compose.override.yml index 3db4c62e5f..73831dd87c 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -62,6 +62,17 @@ services: INSTALL_DEV: ${INSTALL_DEV-true} # command: sleep infinity # Infinite loop to keep container alive doing nothing command: /start-reload.sh + environment: + SMTP_HOST: "mailcatcher" + SMTP_PORT: "1025" + SMTP_TLS: "false" + EMAILS_FROM_EMAIL: "noreply@example.com" + + mailcatcher: + image: schickling/mailcatcher + ports: + - "1080:1080" + - "1025:1025" frontend: restart: "no"