# Application settings APP_NAME="Space Booking API" DEBUG=true # Database DATABASE_URL="sqlite:///./space_booking.db" # JWT SECRET_KEY="your-secret-key-change-in-production" ALGORITHM="HS256" ACCESS_TOKEN_EXPIRE_MINUTES=1440 # SMTP SMTP_HOST=localhost SMTP_PORT=1025 SMTP_USER= SMTP_PASSWORD= SMTP_FROM_ADDRESS=noreply@space-booking.local SMTP_ENABLED=false # Google Calendar Integration GOOGLE_CLIENT_ID=your_google_client_id_here GOOGLE_CLIENT_SECRET=your_google_client_secret_here GOOGLE_REDIRECT_URI=https://your-domain.com/api/integrations/google/callback