archy/core/.env.example

21 lines
466 B
Plaintext
Raw Normal View History

# Backend Configuration
# Copy this to .env and adjust as needed
# Data directory for development
DATADIR=/tmp/archipelago-dev
# RPC server binding address
RPC_BIND=127.0.0.1:5959
# Logging level (trace, debug, info, warn, error)
LOG_LEVEL=debug
# Database URL (PostgreSQL)
DATABASE_URL=postgresql://localhost/archipelago_dev
# Optional: Development mode
ARCHIPELAGO_DEV_MODE=true
# Optional: Port offset for apps in dev mode
ARCHIPELAGO_DEV_PORT_OFFSET=10000