diff options
| author | Ritesh Ghosh <[email protected]> | 2024-12-07 21:05:50 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2024-12-07 21:05:50 +0530 |
| commit | 9d379ec4fe99782dc8e5340f2895cf11399bb1f9 (patch) | |
| tree | 9f2cebc13eb7bb36414aa7173ee51094378678c8 /.env.example | |
| parent | 03771a209685194ee75c188c93d381c51b839810 (diff) | |
| download | aniwatch-api-9d379ec4fe99782dc8e5340f2895cf11399bb1f9.tar.xz aniwatch-api-9d379ec4fe99782dc8e5340f2895cf11399bb1f9.zip | |
feat(envs): standardized env examples and add new redis connection url env
Diffstat (limited to '.env.example')
| -rw-r--r-- | .env.example | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.env.example b/.env.example index c9e59b3..f1c627e 100644 --- a/.env.example +++ b/.env.example @@ -2,7 +2,7 @@ ANIWATCH_API_PORT=4000 # env to control allowed origins -ANIWATCH_API_CORS_ALLOWED_ORIGINS=https://your-production-domain.com,https://another-trusted-domain.com +ANIWATCH_API_CORS_ALLOWED_ORIGINS=<https://your-production-domain.com,https://another-trusted-domain.com> # RATE LIMIT # duration to track requests (in milliseconds) for rate limiting. here, 30*60*1000 = 1800000 = 30 minutes @@ -12,12 +12,14 @@ ANIWATCH_API_MAX_REQS=70 # CAUTION: # For personal deployments, if you wanna have rate limitting -# in your application, then set this env to your deployed -# instance's hostname, otherwise don't set or have this env at all. -# If you set this env to an incorrect value, you may face other issues. - +# in your application, then set the env below to your deployed +# instance's hostname, otherwise don't set or have it at all. +# If you set the env below to an incorrect value, you may face other issues. # ANIWATCH_API_HOSTNAME="api-aniwatch.onrender.com" # NOTE: this env is "required" for vercel deployments -# ANIWATCH_VERCEL_DEPLOYMENT=<true or any non zero value> +# ANIWATCH_API_VERCEL_DEPLOYMENT=<true or any non zero value> + +# env to use optional redis caching functionality +ANIWATCH_API_REDIS_CONN_URL=<rediss://default:[email protected]:6379> |
