@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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @manojkmfsi/monodog@1.1.0 build /home/runner/work/monodog/monodog/packages/monoapp
2
+ > @manojkmfsi/monodog@1.1.1 build /home/runner/work/monodog/monodog/packages/monoapp
3
3
  > rm -rf dist && tsc
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @manojkmfsi/monoapp
2
2
 
3
+ ## 1.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - updated docs
8
+
3
9
  ## 1.1.0
4
10
 
5
11
  ### Minor Changes
@@ -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: '0.0.0.0',
86
+ host: 'localhost',
87
87
  port: '3010',
88
88
  },
89
89
  server: {
90
- host: '0.0.0.0', // Default host for the API server
90
+ host: 'localhost', // Default host for the API server
91
91
  port: 8999, // Default port for the API server
92
92
  },
93
93
  };
@@ -40,7 +40,7 @@ exports.DEFAULT_LOCALHOST = 'localhost';
40
40
  /**
41
41
  * Wildcard address for listening on all interfaces
42
42
  */
43
- exports.WILDCARD_ADDRESS = '0.0.0.0';
43
+ exports.WILDCARD_ADDRESS = 'localhost';
44
44
  /**
45
45
  * HTTP protocol prefix
46
46
  */
@@ -6,11 +6,11 @@
6
6
  "path": "file:./monodog.db"
7
7
  },
8
8
  "dashboard": {
9
- "host": "0.0.0.0",
9
+ "host": "localhost",
10
10
  "port": "3010"
11
11
  },
12
12
  "server": {
13
- "host": "0.0.0.0",
13
+ "host": "localhost",
14
14
  "port": 8999
15
15
  }
16
16
  }
@@ -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": "0.0.0.0",
8
+ "host": "localhost",
8
9
  "port": "3010"
9
10
  },
10
11
  "server": {
11
- "host": "0.0.0.0",
12
+ "host": "localhost",
12
13
  "port": 8999
13
14
  }
14
- }
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manojkmfsi/monodog",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "App for monodog monorepo",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -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: '0.0.0.0',
59
+ host: 'localhost',
60
60
  port: '3010',
61
61
  },
62
62
  server: {
63
- host: '0.0.0.0', // Default host for the API server
63
+ host: 'localhost', // Default host for the API server
64
64
  port: 8999, // Default port for the API server
65
65
  },
66
66
  };
@@ -46,7 +46,7 @@ export const DEFAULT_LOCALHOST = 'localhost';
46
46
  /**
47
47
  * Wildcard address for listening on all interfaces
48
48
  */
49
- export const WILDCARD_ADDRESS = '0.0.0.0';
49
+ export const WILDCARD_ADDRESS = 'localhost';
50
50
 
51
51
  /**
52
52
  * HTTP protocol prefix