Files
appointment-booking-software/.env.example
2025-07-16 15:27:03 +02:00

26 lines
689 B
Bash

# Development Environment Configuration
# Copy this file to .env and fill in your values
# SMTP Configuration for email sending
SMTP_HOST="smtp.example.com"
SMTP_PORT="587"
SMTP_SECURE="false"
SMTP_USER="your-email@example.com"
SMTP_PASS="your-password"
SMTP_FROM_NAME="Open Reception"
SMTP_FROM_EMAIL="noreply@example.com"
# Database Configuration
POSTGRES_DB=appointment_booking
POSTGRES_USER=postgres
POSTGRES_PASSWORD=your_secure_password_here
POSTGRES_PORT=5432
# Application Configuration
NODE_ENV=development
APP_PORT=5173
JWT_SECRET=devsecretforjwtencryptionchangeforproduction
DATABASE_URL="postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@localhost:$POSTGRES_PORT/$POSTGRES_DB"