-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (17 loc) · 789 Bytes
/
.env.example
File metadata and controls
22 lines (17 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Calendar Compare - Environment Variables Template (.env file)
# .env should stay local, this is a template for reference
# Flask Configuration
FLASK_ENV=development
SECRET_KEY=your-secret-key-here-change-this-in-production
# Hey Gavin, here are the steps for google api setup:
# Google OAuth2 Configuration
# 1. Go to https://console.cloud.google.com/
# 2. Create a new project or select an existing one
# 3. Enable the Google Calendar API
# 4. Go to "Credentials" and create OAuth 2.0 Client IDs
# 5. Add http://localhost:5000/auth/callback to authorized redirect URIs
# 6. Copy the Client ID and Client Secret here
GOOGLE_CLIENT_ID=your-google-client-id-here
GOOGLE_CLIENT_SECRET=your-google-client-secret-here
# Database Configuration
DATABASE_URL=sqlite:///calendar_compare.db