kapi-mvc-blank 1.0.1 → 1.0.2

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 +10 -0
  2. package/package.json +2 -2
package/.env.example CHANGED
@@ -9,3 +9,13 @@ UPLOAD_MAX_SIZE=5242880 # bytes (5MB)
9
9
 
10
10
  # Add other env variables below as needed
11
11
  # PORT=3000
12
+
13
+ DATABASE_URL="mysql://root@localhost:3306/MyDb"
14
+
15
+ //add-start
16
+ DATABASE_USER="root"
17
+ DATABASE_PASSWORD=""
18
+ DATABASE_NAME="myDb"
19
+ DATABASE_HOST="localhost"
20
+ DATABASE_PORT=3306
21
+ //add-end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kapi-mvc-blank",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "main": "server.js",
6
6
  "scripts": {
@@ -30,7 +30,7 @@
30
30
  "multer": "^1.4.5-lts.1",
31
31
  "pino": "^10.1.0",
32
32
  "pino-http": "^11.0.0",
33
- "rad-api": "^1.0.3",
33
+ "rad-api": "^1.0.4",
34
34
  "swagger-jsdoc": "^6.2.8",
35
35
  "swagger-ui-express": "^4.6.3"
36
36
  },