@manojkmfsi/monodog 1.1.0 → 1.1.1
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/config-loader.js +2 -2
- package/dist/constants/security.js +1 -1
- package/monodog-config.example.json +2 -2
- package/monodog-config.json +5 -4
- package/package.json +1 -1
- package/src/config-loader.ts +2 -2
- package/src/constants/security.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
package/dist/config-loader.js
CHANGED
|
@@ -83,11 +83,11 @@ function createConfigFileIfMissing(rootPath) {
|
|
|
83
83
|
path: 'file:./monodog.db', // SQLite database file path, relative to prisma schema location
|
|
84
84
|
},
|
|
85
85
|
dashboard: {
|
|
86
|
-
host: '
|
|
86
|
+
host: 'localhost',
|
|
87
87
|
port: '3010',
|
|
88
88
|
},
|
|
89
89
|
server: {
|
|
90
|
-
host: '
|
|
90
|
+
host: 'localhost', // Default host for the API server
|
|
91
91
|
port: 8999, // Default port for the API server
|
|
92
92
|
},
|
|
93
93
|
};
|
package/monodog-config.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"workspaces": [
|
|
2
|
+
"workspaces": [
|
|
3
|
+
],
|
|
3
4
|
"database": {
|
|
4
5
|
"path": "file:./monodog.db"
|
|
5
6
|
},
|
|
6
7
|
"dashboard": {
|
|
7
|
-
"host": "
|
|
8
|
+
"host": "localhost",
|
|
8
9
|
"port": "3010"
|
|
9
10
|
},
|
|
10
11
|
"server": {
|
|
11
|
-
"host": "
|
|
12
|
+
"host": "localhost",
|
|
12
13
|
"port": 8999
|
|
13
14
|
}
|
|
14
|
-
}
|
|
15
|
+
}
|
package/package.json
CHANGED
package/src/config-loader.ts
CHANGED
|
@@ -56,11 +56,11 @@ function createConfigFileIfMissing(rootPath: string): void {
|
|
|
56
56
|
path: 'file:./monodog.db', // SQLite database file path, relative to prisma schema location
|
|
57
57
|
},
|
|
58
58
|
dashboard: {
|
|
59
|
-
host: '
|
|
59
|
+
host: 'localhost',
|
|
60
60
|
port: '3010',
|
|
61
61
|
},
|
|
62
62
|
server: {
|
|
63
|
-
host: '
|
|
63
|
+
host: 'localhost', // Default host for the API server
|
|
64
64
|
port: 8999, // Default port for the API server
|
|
65
65
|
},
|
|
66
66
|
};
|