Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion app/.env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,33 @@
# =============================================================================
# labcode-web-app フロントエンド環境変数設定ファイル
# =============================================================================
# このファイルを .env にコピーして使用してください:
# cp .env.example .env
# =============================================================================

# -----------------------------------------------------------------------------
# Google OAuth 設定(必須)
# -----------------------------------------------------------------------------
# Google Cloud Console から取得してください
# 1. https://console.cloud.google.com/apis/credentials にアクセス
# 2. 「認証情報を作成」→「OAuth クライアント ID」を選択
# 3. アプリケーションの種類: ウェブアプリケーション
# 4. 作成後、クライアントIDをコピー
VITE_GOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com
ALLOWED_HOST=labcode-web-app.com

# -----------------------------------------------------------------------------
# ホスト設定
# -----------------------------------------------------------------------------
# 許可するホスト名
# 開発環境: localhost
# 本番環境: 実際のドメイン名(例: labcode-web-app.com)
ALLOWED_HOST=localhost

# -----------------------------------------------------------------------------
# 機能フラグ(オプション)
# -----------------------------------------------------------------------------
# 管理パネル機能の有効化
VITE_FEATURE_ADMIN_PANEL=true

# 実験実行機能の有効化
VITE_FEATURE_EXPERIMENT_RUNNER=true