From 87f4615b667bc07437bcea879f1556d24021105d Mon Sep 17 00:00:00 2001 From: furyhawk Date: Tue, 14 Apr 2026 08:34:23 +0800 Subject: [PATCH] chore: remove .env file to prevent sensitive data exposure --- .env | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .env diff --git a/.env b/.env deleted file mode 100644 index 313784f..0000000 --- a/.env +++ /dev/null @@ -1,45 +0,0 @@ -# Domain -# This would be set to the production domain with an env var on deployment -# used by Traefik to transmit traffic and aqcuire TLS certificates -DOMAIN=furyhawk.lol -# To test the local Traefik config -# DOMAIN=localhost.dev.lan - -# Used by the backend to generate links in emails to the frontend -FRONTEND_HOST=https://dev.furyhawk.lol -# In staging and production, set this env var to the frontend host, e.g. -# FRONTEND_HOST=https://dashboard.dev.lan - -# Environment: local, staging, production -ENVIRONMENT=local - -PROJECT_NAME="Home Stack FastAPI Project" -STACK_NAME=home-stack-fastapi-project - -# Backend -BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,http://localhost:5175,https://localhost,https://localhost:5173,http://dev.lan,http://dev.lan:5173,https://dev.furyhawk.lol" -SECRET_KEY=changethis -FIRST_SUPERUSER=admin@dev.lan -FIRST_SUPERUSER_PASSWORD=changethis - -# Emails -SMTP_HOST= -SMTP_USER= -SMTP_PASSWORD= -EMAILS_FROM_EMAIL=info@dev.lan -SMTP_TLS=True -SMTP_SSL=False -SMTP_PORT=587 - -# Postgres -POSTGRES_SERVER=db -POSTGRES_PORT=5432 -POSTGRES_DB=app -POSTGRES_USER=postgres -POSTGRES_PASSWORD=changethis - -SENTRY_DSN= - -# Configure these with your own Docker registry images -DOCKER_IMAGE_BACKEND=docker.io/furyhawk/home-stack-fastapi-project-backend -DOCKER_IMAGE_FRONTEND=docker.io/furyhawk/home-stack-fastapi-project-frontend