-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 981 Bytes
/
.env.example
File metadata and controls
27 lines (21 loc) · 981 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
# Google OAuth Configuration
# Get these values from Google Cloud Console (https://console.cloud.google.com/)
# 1. Create a new project or select existing project
# 2. Enable Google Forms API
# 3. Go to "Credentials" > "Create Credentials" > "OAuth 2.0 Client IDs"
# 4. Set application type to "Web application"
# 5. Add authorized redirect URIs
# Your Google OAuth Client ID
VITE_GOOGLE_CLIENT_ID=your_google_client_id_here.apps.googleusercontent.com
# Your Google OAuth Client Secret (optional for frontend OAuth2 flow)
VITE_GOOGLE_CLIENT_SECRET=your_google_client_secret_here
# Redirect URI - MUST match what's configured in Google Cloud Console
# For development (localhost)
VITE_GOOGLE_REDIRECT_URI=http://localhost:5173
# For production, change to your actual domain:
# VITE_GOOGLE_REDIRECT_URI=https://yourdomain.com
# Additional Configuration (optional)
VITE_APP_NAME=AutoFormGenerator
VITE_APP_VERSION=1.0.0
# Development/Production Environment
NODE_ENV=development