27 lines
788 B
Plaintext
27 lines
788 B
Plaintext
# TurfTracker Environment Configuration
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# Database Configuration
|
|
DATABASE_URL=postgresql://turftracker:password123@db:5432/turftracker
|
|
|
|
# JWT Secret - Change this to a strong random string in production
|
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
|
|
|
# Google OAuth2 Configuration (Optional)
|
|
# Get these from Google Cloud Console
|
|
GOOGLE_CLIENT_ID=your-google-client-id
|
|
GOOGLE_CLIENT_SECRET=your-google-client-secret
|
|
|
|
# Weather API Configuration
|
|
# Get a free API key from https://openweathermap.org/api
|
|
WEATHER_API_KEY=your-openweathermap-api-key
|
|
|
|
# Application URLs
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
# Node Environment
|
|
NODE_ENV=development
|
|
|
|
# Port Configuration (optional - defaults are set)
|
|
PORT=5000
|
|
FRONTEND_PORT=3000 |