Skip to content

Commit ccb1768

Browse files
authored
Update README.md
1 parent 6914a70 commit ccb1768

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

README.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,26 @@ pm2 startup
105105
### Environment Variables
106106
Create a `.env` file in the root directory:
107107
```env
108+
# Server Configuration
108109
PORT=3000
109-
RATE_LIMIT_WINDOW=60000
110-
RATE_LIMIT_MAX=60
110+
NODE_ENV=production
111+
112+
# Rate Limiting
113+
RATE_LIMIT_WINDOW=60000 # 1 minute in milliseconds
114+
RATE_LIMIT_MAX=60 # 60 requests per minute
115+
116+
# API Settings
117+
API_VERSION=v1
118+
BASE_URL=https://api.raikou.me
119+
120+
# Timeouts (in milliseconds)
121+
JAVA_TIMEOUT=5000
122+
BEDROCK_TIMEOUT=5000
123+
DNS_TIMEOUT=3000
124+
125+
# Cache Settings
126+
CACHE_ENABLED=true
127+
CACHE_TTL=300000 # 5 minutes in milliseconds
111128
```
112129

113130
## 📝 License
@@ -120,4 +137,4 @@ Contributions, issues and feature requests are welcome! Feel free to check [issu
120137

121138
## ⭐ Show your support
122139

123-
Give a ⭐️ if this project helped you!
140+
Give a ⭐️ if this project helped you!

0 commit comments

Comments
 (0)