-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (26 loc) · 991 Bytes
/
.env.example
File metadata and controls
29 lines (26 loc) · 991 Bytes
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
# ==========================================
# JustGo Environment Variables Example
# ==========================================
#
# This file shows what environment variables are needed.
# Copy this file to .env and fill in your actual values.
#
# NOTE: For .NET application secrets (API keys, connection strings),
# use User Secrets instead:
# dotnet user-secrets set "Google:MapsApiKey" "your-key"
#
# This .env file is primarily for Docker Compose configuration.
# ==========================================
# SQL Server Configuration (Docker)
SA_PASSWORD=YourStrongPassword123!
DB_SERVER=localhost
DB_PORT=1433
DB_NAME=Travel
DB_USER=sa
# Google Maps API Key (if not using User Secrets)
# Note: Prefer using User Secrets for .NET apps
# GOOGLE_MAPS_API_KEY=your-google-maps-api-key-here
# SendGrid Configuration (optional - for email sending)
# SENDGRID_API_KEY=your-sendgrid-api-key-here
# SENDGRID_FROM_EMAIL=noreply@justgo.com
# SENDGRID_FROM_NAME=JustGo 旅遊平台