mirror of
https://github.com/open-reception/appointment-booking-software.git
synced 2026-09-12 04:07:39 +02:00
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
15 lines
396 B
Bash
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"
|