create-express-kickstart 1.2.9 → 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.
Files changed (2) hide show
  1. package/.env.example +1 -8
  2. 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-express-kickstart",
3
- "version": "1.2.9",
3
+ "version": "1.2.10",
4
4
  "description": "Production-ready CLI starter for Express APIs",
5
5
  "main": "bin/cli.js",
6
6
  "bin": {