create-aomex 0.0.35 → 0.0.37

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": "create-aomex",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "repository": "git@github.com:aomex/create-aomex.git",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -19,9 +19,11 @@ services:
19
19
  - ./volumes/mongo:/data/db
20
20
  ports:
21
21
  - 27017:27017
22
+ command: --logpath /dev/null
22
23
  redis:
23
24
  image: redis:7
24
25
  volumes:
25
26
  - ./volumes/redis:/data
26
27
  ports:
27
28
  - 6379:6379
29
+ command: --requirepass abcde
@@ -8,7 +8,7 @@ export const development: Config = {
8
8
  redis: <RedisOptions>{
9
9
  host: 'localhost',
10
10
  port: 6379,
11
- password: undefined,
11
+ password: 'abcde',
12
12
  db: 0,
13
13
  },
14
14
  };
@@ -2,7 +2,7 @@ import { PrismaClient } from '@prisma/client';
2
2
  import * as runtime from '@prisma/client/runtime/library';
3
3
 
4
4
  export const prisma = new PrismaClient({
5
- log: ['info'],
5
+ log: ['error'],
6
6
  });
7
7
 
8
8
  export type PrismaTX = Omit<PrismaClient, runtime.ITXClientDenyList>;