Update .env

This commit is contained in:
xfarrow 2024-02-15 10:41:34 +01:00
parent 347d722537
commit 84f11b9a23
1 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@
# API server settings
API_SERVER_PORT = 3000
JWT_SECRET_KEY = jwt-secret # Change this
LIMITER_WINDOW = 3600000 # 1 hour in milliseconds
LIMITER_MAXIMUM_PER_WINDOW = 500 # 500 requests for each window
JWT_SECRET_KEY = jwt-secret # Change this in production
LIMITER_WINDOW = 3600000 # Milliseconds in limiter window
LIMITER_MAXIMUM_PER_WINDOW = 500 # Requests for each limiter window
# Database settings
POSTGRES_SERVER = localhost