ci: add port and debug log
This commit is contained in:
parent
f1ed0d5f6c
commit
501e75b420
@ -9,6 +9,9 @@ jobs:
|
||||
redis:
|
||||
image: redis:7.4.1-alpine
|
||||
command: redis-server --save 20 1 --loglevel warning --requirepass development
|
||||
ports:
|
||||
- 6379:6379
|
||||
|
||||
postgres:
|
||||
image: postgres:17-alpine
|
||||
|
||||
|
@ -5,5 +5,7 @@ export const redis = createClient({
|
||||
url: import.meta.env.REDIS_URL,
|
||||
})
|
||||
|
||||
console.log(import.meta.env)
|
||||
|
||||
redis.on('error', (err) => console.log('Redis Client Error', err))
|
||||
await redis.connect()
|
||||
|
Loading…
Reference in New Issue
Block a user