kapi-mvc-blank 1.0.0

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 ADDED
@@ -0,0 +1,11 @@
1
+ # Environment variables example
2
+ # API version used in the URL, e.g. "v1"
3
+ API_VERSION=v1
4
+ LOG_LEVEL=info
5
+ LOG_DIR=logs
6
+ LOG_FILE=app.log
7
+ UPLOAD_DIR=uploads
8
+ UPLOAD_MAX_SIZE=5242880 # bytes (5MB)
9
+
10
+ # Add other env variables below as needed
11
+ # PORT=3000