# Solitaire Quest Server — environment configuration # This file is installed to /etc/solitaire-quest-server/server.env (mode 0640). # Edit these values before starting the service. # Path to the SQLite database file. # The directory must be writable by the solitaire-quest service user. DATABASE_URL=sqlite:///var/lib/solitaire-quest-server/solitaire.db # HS256 signing secret for JWT tokens. # Generate a strong secret with: openssl rand -hex 32 # REQUIRED — server will refuse to start if unset. JWT_SECRET=changeme_generate_with_openssl_rand_hex_32 # TCP port the server listens on. SERVER_PORT=8080