free-framework 4.5.7 → 4.5.8
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/package.json
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
# Free Framework Core Template Configuration
|
|
2
2
|
# Production-ready defaults for Database, Security, and Routing
|
|
3
3
|
|
|
4
|
-
# ── Database (
|
|
5
|
-
DB_CLIENT=
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
# ── Database (SQLite Default - Change as needed) ───────────────────────────
|
|
5
|
+
DB_CLIENT=sqlite3
|
|
6
|
+
DB_PATH=database/database.sqlite
|
|
7
|
+
|
|
8
|
+
# MySQL (Recommended for Production)
|
|
9
|
+
# DB_CLIENT=mysql2
|
|
10
|
+
# DB_HOST=127.0.0.1
|
|
11
|
+
# DB_PORT=3306
|
|
12
|
+
# DB_USER=root
|
|
13
|
+
# DB_PASS=
|
|
14
|
+
# DB_NAME=free_db_default
|
|
11
15
|
|
|
12
16
|
# Connection Pooling Settings
|
|
13
17
|
DB_POOL_MIN=5
|