create-express-kickstart 1.2.8 → 1.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +1 -8
- package/README.md +1 -1
- package/package.json +1 -1
package/.env.example
CHANGED
|
@@ -6,11 +6,4 @@ NODE_ENV=development
|
|
|
6
6
|
|
|
7
7
|
# Rate Limiting
|
|
8
8
|
RATE_LIMIT_WINDOW_MS=900000 # 15 minutes in milliseconds
|
|
9
|
-
RATE_LIMIT_MAX=100 # Maximum requests per windowMs
|
|
10
|
-
|
|
11
|
-
# Bcrypt Configuration
|
|
12
|
-
BCRYPT_SALT=10
|
|
13
|
-
|
|
14
|
-
# JWT Configuration
|
|
15
|
-
JWT_SECRET=your_jwt_secret_key
|
|
16
|
-
JWT_EXPIRES_IN=1d
|
|
9
|
+
RATE_LIMIT_MAX=100 # Maximum requests per windowMs
|
package/README.md
CHANGED