-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (19 loc) · 721 Bytes
/
.env.example
File metadata and controls
24 lines (19 loc) · 721 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
# Rails Environment
RAILS_ENV=development
# Database
DB_HOST=localhost
DB_USER=root
DB_PASSWORD=your_password_here
DB_NAME=rogue_development
# Redis
REDIS_URL=redis://localhost:6379/0
# Google Service Account Credentials (JSON format)
# For development: Keep your local config/google-service-account.json file (not in git)
# For production: Set this environment variable with your service account JSON
# Get your credentials from: https://console.cloud.google.com/iam-admin/serviceaccounts
GOOGLE_SERVICE_ACCOUNT='{"type":"service_account","project_id":"your_project_id",...}'
# JWT Secret
JWT_SECRET_KEY=your_jwt_secret_key_here
# API Configuration
API_HOST=http://localhost:3000
CORS_ORIGINS=http://localhost:3000