unpkg/server/RedisClient.js

10 lines
250 B
JavaScript
Raw Normal View History

2017-11-25 21:25:01 +00:00
const redis = require("redis")
2017-08-16 17:31:34 +00:00
2017-08-27 00:44:50 +00:00
redis.debug_mode = process.env.DEBUG_REDIS != null
2017-11-25 21:25:01 +00:00
const RedisURL = process.env.OPENREDIS_URL || process.env.REDIS_URL || "redis://localhost:6379"
2017-08-16 17:31:34 +00:00
const client = redis.createClient(RedisURL)
module.exports = client