Scratch space for learning atproto app development
1# Environment Configuration 2NODE_ENV="development" # Options: 'development', 'production' 3PORT="8080" # The port your server will listen on 4HOST="localhost" # Hostname for the server 5 6# CORS Settings 7CORS_ORIGIN="http://localhost:*" # Allowed CORS origin, adjust as necessary 8 9# Rate Limiting 10COMMON_RATE_LIMIT_WINDOW_MS="1000" # Window size for rate limiting (ms) 11COMMON_RATE_LIMIT_MAX_REQUESTS="20" # Max number of requests per window per IP