Files
appointment-booking-software/.env.example
T
Hendrik Belitz 6bad712b6f Fixed env variable handling to also consider the DATABASE_URL
Renamed container and image names
Fixed build and compose errors in Docker files
Added env test and health routes to web app api
Explicitly use node adapter for svelte app
2025-06-19 18:39:40 +02:00

15 lines
396 B
Bash

# Development Environment Configuration
# Copy this file to .env and fill in your values
# 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
DATABASE_URL="postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@localhost:$POSTGRES_PORT/$POSTGRES_DB"