forked from neozhu/CleanArchitectureWithBlazorServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.env
More file actions
69 lines (54 loc) · 1.81 KB
/
sample.env
File metadata and controls
69 lines (54 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Use in-memory database (true/false)
USE_IN_MEMORY_DATABASE=false
# ASP.NET Core environment (Development, Staging, Production)
ASPNETCORE_ENVIRONMENT=Development
# ASP.NET Core URLs to bind
ASPNETCORE_URLS=http://+:80;https://+:443
# HTTP port
ASPNETCORE_HTTP_PORTS=80
# HTTPS port
ASPNETCORE_HTTPS_PORTS=443
# Application base URL
APP_URL=https://your-app-url.com
# Application version
APP_VERSION=1.1.99
# Database provider (mssql, postgresql, sqlite, etc.)
DB_PROVIDER=mssql
# SQL Server password (replace with your actual password)
SQL_SERVER_PASSWORD=YourStrong!PasswordHere
# Database connection string (use environment variable for password)
DB_CONNECTION_STRING=Server=sqldb;Database=BlazorDashboardDb;User Id=sa;Password=${SQL_SERVER_PASSWORD};MultipleActiveResultSets=true;Encrypt=false;TrustServerCertificate=true
# SMTP (mail) user
SMTP_USER=your_smtp_user
# SMTP port
SMTP_PORT=2525
# SMTP server address
SMTP_SERVER=your.smtp.server.com
# SMTP password
SMTP_PASSWORD=your_smtp_password
# Default sender email address
SMTP_DEFAULT_FROM=noreply@yourdomain.com
# Microsoft OAuth client ID
MS_CLIENT_ID=your_ms_client_id
# Microsoft OAuth client secret
MS_CLIENT_SECRET=your_ms_client_secret
# Google OAuth client ID
GOOGLE_CLIENT_ID=your_google_client_id
# Google OAuth client secret
GOOGLE_CLIENT_SECRET=your_google_client_secret
# Facebook App ID
FB_APP_ID=your_fb_app_id
# Facebook App Secret
FB_APP_SECRET=your_fb_app_secret
# MinIO endpoint (object storage)
MINIO_ENDPOINT=minio.yourdomain.com
# MinIO access key
MINIO_ACCESS_KEY=your_minio_access_key
# MinIO secret key
MINIO_SECRET_KEY=your_minio_secret_key
# MinIO bucket name
MINIO_BUCKET=your_bucket_name
# Application name (for display)
AppConfigurationSettings__AppName=Blazor Studio
# Gemini API Key (for Google AI integration)
GEMINI_API_KEY=your_gemini_api_key