@lenne.tech/nest-server 9.0.5 → 9.0.6
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lenne.tech/nest-server",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.6",
|
|
4
4
|
"description": "Modern, fast, powerful Node.js web framework in TypeScript based on Nest with a GraphQL API and a connection to MongoDB (or other databases).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|
package/src/config.env.ts
CHANGED
|
@@ -54,7 +54,7 @@ const config: { [env: string]: IServerOptions } = {
|
|
|
54
54
|
},
|
|
55
55
|
loadLocalConfig: false,
|
|
56
56
|
mongoose: {
|
|
57
|
-
uri: 'mongodb://
|
|
57
|
+
uri: 'mongodb://127.0.0.1/nest-server-dev',
|
|
58
58
|
},
|
|
59
59
|
port: 3000,
|
|
60
60
|
sha256: true,
|
|
@@ -106,7 +106,7 @@ const config: { [env: string]: IServerOptions } = {
|
|
|
106
106
|
},
|
|
107
107
|
loadLocalConfig: false,
|
|
108
108
|
mongoose: {
|
|
109
|
-
uri: 'mongodb://
|
|
109
|
+
uri: 'mongodb://127.0.0.1/nest-server-dev',
|
|
110
110
|
},
|
|
111
111
|
port: 3000,
|
|
112
112
|
sha256: true,
|
|
@@ -158,7 +158,7 @@ const config: { [env: string]: IServerOptions } = {
|
|
|
158
158
|
},
|
|
159
159
|
loadLocalConfig: false,
|
|
160
160
|
mongoose: {
|
|
161
|
-
uri: 'mongodb://
|
|
161
|
+
uri: 'mongodb://127.0.0.1/nest-server-prod',
|
|
162
162
|
},
|
|
163
163
|
port: 3000,
|
|
164
164
|
sha256: true,
|