File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# --- Cloudflare API Credentials (Do not use quotes) ---
2
- CLOUDFLARE_API_KEY =
2
+ CLOUDFLARE_API_TOKEN =
3
3
CLOUDFLARE_ZONE_ID =
4
4
5
5
# --- Email Configuration (Do not use quotes) ---
Original file line number Diff line number Diff line change 26
26
limiter = Limiter (
27
27
get_remote_address ,
28
28
app = app ,
29
- default_limits = [os .getenv ("RATE_LIMIT_DEFAULT" , "60 per minute" )], # Apply default limit
30
- storage_uri = "memory://" , # Simple in-memory storage, consider Redis for multi-process/scaled setups
31
- strategy = "fixed-window" # or "moving-window"
29
+ default_limits = [os .getenv ("RATE_LIMIT_DEFAULT" , "60 per minute" )],
30
+ storage_uri = "memory://" ,
31
+ strategy = "fixed-window"
32
32
)
33
33
34
34
DATABASE_PATH = '/app/data/emails.db'
You can’t perform that action at this time.
0 commit comments