Skip to content

Commit

Permalink
add defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
sgmdlt committed Dec 27, 2024
1 parent 6cf680b commit 514047a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,5 +315,5 @@

HOSTNAME_BLACKLIST = []

RATELIMIT_REQUESTS = int(os.getenv('RATELIMIT_REQUESTS'))
RATELIMIT_TIMEFRAME = int(os.getenv('RATELIMIT_TIMEFRAME'))
RATELIMIT_REQUESTS = int(os.getenv('RATELIMIT_REQUESTS', 1000))
RATELIMIT_TIMEFRAME = int(os.getenv('RATELIMIT_TIMEFRAME', 3600))

0 comments on commit 514047a

Please sign in to comment.