1.0.3 • Published 4 years ago

@jackdouglas/ts-database v1.0.3

Weekly downloads
-
License
-
Repository
-
Last release
4 years ago

Notify Database Module

Notify reusable database client connections for Notify micro-services

Usage

Documentation coming soon

Required Environment Variables

The below variables are required by the module and need no other processing beforehand

This means you can just set the database secrets in the environment on a producution machine and on development you would use dotenv or some other terminal env filler.

REDIS_HOST="127.0.0.1"
REDIS_DATABASE="0"
REDIS_PORT="6379"

POSTGRES_HOST="127.0.0.1"
POSTGRES_PORT="5432"
POSTGRES_DATABASE="postgres"
POSTGRES_USER="postgres"
POSTGRES_PASS="docker"