# Environment Configuration NODE_ENV="development" # Options: 'development', 'production' PORT="8080" # The port your server will listen on HOST="localhost" # Hostname for the server PUBLIC_URL="" # Set when deployed publicly, e.g. "https://mysite.com". Informs OAuth client id. # CORS Settings CORS_ORIGIN="http://localhost:*" # Allowed CORS origin, adjust as necessary # Rate Limiting COMMON_RATE_LIMIT_WINDOW_MS="1000" # Window size for rate limiting (ms) COMMON_RATE_LIMIT_MAX_REQUESTS="20" # Max number of requests per window per IP # Secrets # Must set this in production. May be generated with `openssl rand -base64 33` # COOKIE_SECRET=""