Initial Claude Run
This commit is contained in:
27
.env.example
Normal file
27
.env.example
Normal file
@@ -0,0 +1,27 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user