23 lines
758 B
Plaintext
23 lines
758 B
Plaintext
# Supabase Configuration
|
|
# Sign up at https://supabase.io to get your project URL and anon key
|
|
REACT_APP_SUPABASE_URL=https://your-supabase-project.supabase.co
|
|
REACT_APP_SUPABASE_ANON_KEY=your-supabase-anon-key-here
|
|
|
|
# Database Password (for reference - not used directly in app)
|
|
SUPABASE_DB_PASSWORD=your-database-password-here
|
|
|
|
# Application Settings
|
|
REACT_APP_APP_NAME=Time Tracker
|
|
REACT_APP_VERSION=1.0.0
|
|
|
|
# Development Settings
|
|
GENERATE_SOURCEMAP=false
|
|
|
|
# Instructions:
|
|
# 1. Copy this file to .env
|
|
# 2. Replace placeholder values with your actual credentials
|
|
# 3. Restart the development server after making changes
|
|
|
|
# Security Note:
|
|
# Never commit .env file to version control
|
|
# Only variables prefixed with REACT_APP_ are embedded in the client bundle |