Skip to content

Commit 6e57c27

Browse files
committed
fix: removed quoted from .env.example
1 parent 9f58db3 commit 6e57c27

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.env.example

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ DOMAIN_NAME=
99
DESTINATION_EMAIL=
1010

1111
# --- API Rate Limiting ---
12-
# Format: "count per interval" (e.g., "10 per minute", "100 per hour", "1 per second")
12+
# Format: "count per interval" (e.g., 10 per minute, 100 per hour, 1 per second)
13+
# Do not use quotes
1314
# Applies primarily to the /generate endpoint. Leave empty to disable.
14-
RATE_LIMIT_GENERATE="20 per day"
15+
RATE_LIMIT_GENERATE=20 per day
1516
# Default limit for other routes. Leave empty to disable.
16-
RATE_LIMIT_DEFAULT="60 per minute"
17+
RATE_LIMIT_DEFAULT=60 per minute
1718

1819
# --- Flask Settings (Optional) ---
1920
# Set to "true" for development debugging (DISABLE in production)
20-
FLASK_DEBUG="false"
21+
FLASK_DEBUG=false
2122
# Port the Flask app will run on inside the container
22-
FLASK_RUN_PORT="6020"
23+
FLASK_RUN_PORT=6020

0 commit comments

Comments
 (0)