mirror of
https://github.com/doolijb/serene-pub.git
synced 2026-04-28 03:20:07 +00:00
39 lines
No EOL
1.2 KiB
Text
39 lines
No EOL
1.2 KiB
Text
# Serene Pub 0.4.1 - Development Configuration
|
|
# Copy this file to .env to customize development settings
|
|
|
|
# ===========================================
|
|
# APPLICATION DATA DIRECTORY
|
|
# ===========================================
|
|
# Override default data directory for development
|
|
# Default: Uses OS-appropriate directories
|
|
# Example for local development:
|
|
# SERENE_PUB_DATA_DIR=./dev-data
|
|
|
|
# ===========================================
|
|
# WEBSOCKET CONFIGURATION
|
|
# ===========================================
|
|
# WebSocket server HTTP mode
|
|
# Default: http
|
|
# SOCKETS_HTTP_MODE=https
|
|
|
|
# WebSocket server port
|
|
# Default: 3001
|
|
# SOCKETS_PORT=3001
|
|
|
|
# ===========================================
|
|
# DEVELOPMENT DATABASE (External PostgreSQL)
|
|
# ===========================================
|
|
# These are only used when connecting to external PostgreSQL for development
|
|
# Production uses embedded PGlite automatically
|
|
|
|
# PostgreSQL connection for development
|
|
# DATABASE_PORT=5432
|
|
# POSTGRES_USER=postgres
|
|
# POSTGRES_PASSWORD=password
|
|
|
|
# ===========================================
|
|
# DEVELOPMENT OPTIONS
|
|
# ===========================================
|
|
# Automatically open browser on startup (default: enabled)
|
|
# Set to 1 to disable automatic browser opening
|
|
# SERENE_AUTO_OPEN=1 |