kapi-mvc-blank 1.0.0 → 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.
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/README.md CHANGED
@@ -97,7 +97,7 @@ src/
97
97
 
98
98
  1. **Cloner le repository**
99
99
  ```bash
100
- git clone <repository-url>
100
+ git clone https://github.com/kferrandonFulbert/kapi-mvc-blank
101
101
  cd api-mvc-node
102
102
  ```
103
103
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kapi-mvc-blank",
3
- "version": "1.0.0",
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
  },