From c9de5313892e877186a51582396107f968c76914 Mon Sep 17 00:00:00 2001 From: Ahmed Al-Taiar Date: Sat, 26 Oct 2024 16:37:49 -0400 Subject: [PATCH] Remove defaults, as they override the optional values --- .env.defaults | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .env.defaults diff --git a/.env.defaults b/.env.defaults deleted file mode 100644 index 3bc93fc..0000000 --- a/.env.defaults +++ /dev/null @@ -1,46 +0,0 @@ -# These environment variables will be used by default if you do not create any -# yourself in .env. This file should be safe to check into your version control -# system. Any custom values should go in .env and .env should *not* be checked -# into version control. - -# location of the test database for api service scenarios (defaults to ./.redwood/test.db if not set) -# TEST_DATABASE_URL=file:./.redwood/test.db - -# disables Prisma CLI update notifier -PRISMA_HIDE_UPDATE_MESSAGE=true - -# Option to override the current environment's default api-side log level -# See: https://redwoodjs.com/docs/logger for level options, defaults to "trace" otherwise. -# Most applications want "debug" or "info" during dev, "trace" when you have issues and "warn" in production. -# Ordered by how verbose they are: trace | debug | info | warn | error | silent -# LOG_LEVEL=debug - -FIRST_NAME=firstname -LAST_NAME=lastname - -DEFAULT_THEME=light - -COUNTRY=US -STATE=New York -CITY=Manhattan - -SMTP_HOST=smtp.example.com -SMTP_PORT=465 -SMTP_SECURE=true -SMTP_USER=noreply@example.com -EMAIL_FROM=noreply@example.com -EMAIL_TO=email@example.com -SMTP_PASSWORD=password - -DOMAIN=example.com -API_DOMAIN=api.example.com - -# Must not end with "/" -ADDRESS_PROD=https://portfolio.example.com -ADDRESS_DEV=http://localhost:8910 -API_ADDRESS_PROD=https://api-portfolio.example.com -API_ADDRESS_DEV=http://localhost:8911 - -MAX_HTTP_CONNECTIONS_PER_MINUTE=60 - -DATABASE_URL=postgresql://user:password@localhost:5432/rw_portfolio