Initial Claude Run

This commit is contained in:
Jake Kasper
2025-08-21 07:06:36 -05:00
parent 5ead64afcd
commit 2a46f7261e
53 changed files with 7633 additions and 2 deletions

27
.env.example Normal file
View 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