+ port: Getenv.int('DEAD_DROP_PORT', 1988),
+ twilioAccountSid: Getenv('DEAD_DROP_TWILIO_ACCOUNT_SID'),
+
+ /**
+ * Information required to connect to the redis server
+ *
+ * @memberof DeadDrop
+ * @typedef {object} tRedisConfiguration
+ * @property {string} host the location of the redis host
+ * @property {string} [post=6379] port where redis server is listening
+ */
+ redis: {
+ host: Getenv('DEAD_DROP_REDIS_HOST'),
+ port: Getenv.int('DEAD_DROP_REDIS_PORT', 6379)
+ }