# Copy to .env and fill in the values before running docker compose up. # SQLite database path inside the container. # When using docker-compose, leave as-is — the volume handles persistence. DATABASE_URL=sqlite:///data/solitaire.db # HS256 signing secret for JWT tokens. # Generate with: openssl rand -hex 32 JWT_SECRET=replace_me_with_a_64_char_hex_secret # TCP port the server listens on inside the container. SERVER_PORT=8080 # Public domain name used by Caddy for automatic HTTPS. # Example: solitaire.example.com SOLITAIRE_DOMAIN=solitaire.example.com