@mixd-id/web-scaffold 0.1.230406303 → 0.1.230406304

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/utils/wss.js +1 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.230406303",
4
+ "version": "0.1.230406304",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
package/src/utils/wss.js CHANGED
@@ -97,6 +97,7 @@ class WSS extends EventEmitter2{
97
97
  this._opt = opt
98
98
  this._instance = new WebSocket.Server(opt);
99
99
 
100
+ console.log('WSS', process.env.REDIS_HOST, process.env.REDIS_PORT)
100
101
  this._client = redis.createClient({
101
102
  host: process.env.REDIS_HOST ?? '127.0.0.1',
102
103
  port: process.env.REDIS_PORT ?? 6379