修改標籤樣式

This commit is contained in:
2025-07-19 02:47:06 +08:00
parent 67efa460a7
commit 1bb7c67f7c
3 changed files with 237 additions and 4 deletions

48
env.template Normal file
View File

@@ -0,0 +1,48 @@
# 心願星河 - 環境變數配置模板
# 複製此文件為 .env.local 並填入實際值
# ================================
# Supabase 配置 (必需)
# ================================
# 從 Supabase Dashboard → Settings → API 獲取
NEXT_PUBLIC_SUPABASE_URL=https://your-project-id.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here
# ================================
# 應用程式 URL
# ================================
# 開發環境
NEXT_PUBLIC_APP_URL=http://localhost:3000
# 生產環境(部署到 Vercel 後修改)
# NEXT_PUBLIC_APP_URL=https://your-app-name.vercel.app
# ================================
# 管理功能 (可選)
# ================================
# 用於服務器端操作和管理功能
# 從 Supabase Dashboard → Settings → API → Service Role 獲取
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here
# ================================
# 分析和監控 (可選)
# ================================
# Google Analytics
# NEXT_PUBLIC_GOOGLE_ANALYTICS=GA_MEASUREMENT_ID
# Vercel Analytics
# NEXT_PUBLIC_VERCEL_ANALYTICS=true
# ================================
# 開發工具 (僅開發環境)
# ================================
# 啟用詳細日誌
# NEXT_PUBLIC_DEBUG=true
# ================================
# 注意事項
# ================================
# 1. 只有以 NEXT_PUBLIC_ 開頭的變數可以在瀏覽器中訪問
# 2. 不要將 Service Role Key 暴露在客戶端代碼中
# 3. 部署到生產環境時,請更新 NEXT_PUBLIC_APP_URL
# 4. .env.local 文件已被 .gitignore 忽略,不會被提交到 Git