From 4888785140a2dd09e097179dd1f2dfcf6c1aff65 Mon Sep 17 00:00:00 2001 From: Daniel <59575049+bytegrip@users.noreply.github.com> Date: Tue, 10 Jun 2025 00:43:49 +0300 Subject: [PATCH] Update README.md --- README.md | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 0013122..e029757 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,41 @@ ### `.env Example` ```env -# Database Configuration -SQL_SERVER=example-sqlserver -SQL_DATABASE=ExampleDB +# SQL Server Configuration +SQL_SERVER=localhost +SQL_DATABASE=ExampleDatabase SQL_USER_ID=admin -SQL_PASSWORD=Str0ngP@ssw0rd123! +SQL_PASSWORD=ExamplePassword123! # Auth0 Configuration -AUTH0_SECRET=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -AUTH0_ISSUER_BASE_URL=auth.example.com -AUTH0_CLIENT_ID=abcd1234efgh5678ijkl9012mnop3456 -AUTH0_CLIENT_SECRET=ZYXwvu9876tsrqPONMLkjiHGFedcba4321!@#$% -AUTH0_AUDIENCE=https://example.com +AUTH0_SECRET=0000000000000000000000000000000000000000000000000000000000000000 +AUTH0_ISSUER_BASE_URL=https://auth.example.com +AUTH0_CLIENT_ID=EXAMPLE_CLIENT_ID_12345 +AUTH0_CLIENT_SECRET=EXAMPLE_CLIENT_SECRET_ABCDE12345 +AUTH0_AUDIENCE=https://api.example.com AUTH0_SCOPE=openid profile email -AUTH0_DOMAIN=https://dev-example1234.us.auth0.com/ +AUTH0_DOMAIN=https://example.auth0.com/ +AUTH0_AUTHORITY=https://auth.example.com/ + +# App Configuration APP_BASE_URL=https://example.com # ASP.NET Core Configuration ASPNETCORE_ENVIRONMENT=Development -ASPNETCORE_URLS=http://+:8080 +ASPNETCORE_HTTP_PORTS=8080 +ASPNETCORE_APPLY_MIGRATIONS_AT_STARTUP=true +ASPNETCORE_SEQ_URL=http://seq:5341 ASPNETCORE_LOGGING_LEVEL_DEFAULT=Information ASPNETCORE_LOGGING_LEVEL=Information ASPNETCORE_LOGGING_LEVEL_EFCORE=Information -ASPNETCORE_APPLY_MIGRATIONS_AT_STARTUP=true +ASPNETCORE_LOGGING_LEVEL_APP=Information -# Frontend Configuration +# Seq UI URL +SEQ_BASE_URI=https://example.com/seq + +# Node.js / Next.js Configuration +NODE_ENV=development +COOKIE_DOMAIN=.example.com NEXT_PUBLIC_API_URL=https://example.com/api NEXT_PUBLIC_AUTH0_DOMAIN=auth.example.com -NEXT_PUBLIC_AUTH0_CLIENT_ID=abcd1234efgh5678ijkl9012mnop3456 \ No newline at end of file +NEXT_PUBLIC_AUTH0_CLIENT_ID=EXAMPLE_PUBLIC_CLIENT_ID