-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (47 loc) · 1.58 KB
/
Copy path.env.example
File metadata and controls
53 lines (47 loc) · 1.58 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ===============================
# APP
# ===============================
APP_NAME=Rizzworld
NODE_ENV=development
PORT=5000
# ===============================
# GEMINI AI
# ===============================
GEMINI_API_KEY=your_gemini_api_key_here
GEMINI_MODEL=gemini-1.5-flash
GEMINI_TEMPERATURE=0.7
GEMINI_MAX_TOKENS=500
# ===============================
# DATABASE CONFIGURATION
# ===============================
# Using SQLite
DATABASE_TYPE=sqlite
DATABASE_PATH=./database/travello.db
# ===============================
# GOOGLE OAUTH
# ===============================
# TODO: Get these from Google Cloud Console
# https://console.cloud.google.com/apis/credentials
# Guide: docs/google-oauth-setup.md
GOOGLE_CLIENT_ID=953293710076-pvd2djos7i2tgedm9dgrbvngr1n450um.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=****VXEK
GOOGLE_CALLBACK_URL=http://localhost:5000/api/auth/google/callback
CORS_ORIGIN=http://localhost:5173
# ===============================
# GITHUB OAUTH
# ===============================
# TODO: Get these from GitHub OAuth App Settings
# https://github.com/settings/applications/new
# Guide: docs/github-oauth-setup.md
GITHUB_CLIENT_ID=Ov23ctLbighhZtAhZ5SB
GITHUB_CLIENT_SECRET=6e565d9478d915040036919fb9c31d26df5f13e9
GITHUB_CALLBACK_URL=http://localhost:5000/api/auth/github/callback
# ===============================
# JWT CONFIGURATION
# ===============================
JWT_SECRET=your_jwt_secret_here_change_in_production
JWT_EXPIRES_IN=7d
# ===============================
# SESSION CONFIGURATION
# ===============================
SESSION_SECRET=your_session_secret_here_change_in_production