From 975f539f8bf856794a06af13de2a70244e6d9b79 Mon Sep 17 00:00:00 2001 From: Anderson Resende Date: Tue, 24 Dec 2024 14:04:44 -0300 Subject: [PATCH] Fixed comments --- fastapi_backend/.env.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fastapi_backend/.env.example b/fastapi_backend/.env.example index 2c1e391..2c6c041 100644 --- a/fastapi_backend/.env.example +++ b/fastapi_backend/.env.example @@ -1,9 +1,9 @@ # Database -# Local database (replace localhost with db if you are using docker) +# Local database (replace localhost with db if you are running the project with docker) DATABASE_URL=postgresql+asyncpg://postgres:password@localhost:5432/mydatabase -# Test database(replace localhost with db_test if you are using docker) +# Test database(replace localhost with db_test if you are running the project with docker) TEST_DATABASE_URL=postgresql+asyncpg://postgres:password@localhost:5433/testdatabase @@ -17,7 +17,7 @@ VERIFICATION_SECRET_KEY=your_verification_secret_key OPENAPI_OUTPUT_FILE=../nextjs-frontend/openapi.json -# Localhost Email configuration (replace localhost with mailhog if you are using docker) +# Localhost Email configuration (replace localhost with mailhog if you are running the project with docker) MAIL_USERNAME=test MAIL_PASSWORD=test MAIL_FROM=test@test.com