# Copy this file to .env and fill in the values. # The server reads these on startup via dotenvy. # SQLite database path. For local dev use a file path; for Docker use the # volume-mounted path (see docker-compose.yml). DATABASE_URL=sqlite://sol.db # HS256 signing secret for JWT tokens. Use at least 32 random characters. # Generate one with: openssl rand -hex 32 JWT_SECRET=change-me-use-openssl-rand-hex-32 # TCP port to listen on (optional, default 8080). # SERVER_PORT=8080