Skip to content

Instantly share code, notes, and snippets.

@tlcheah2
Last active May 2, 2021 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlcheah2/96f3aad8cc4723ba61c35eb7dbf990cd to your computer and use it in GitHub Desktop.
Save tlcheah2/96f3aad8cc4723ba61c35eb7dbf990cd to your computer and use it in GitHub Desktop.
Sample .env file for sequelize migration microservice example
# This would be the keys you defined in config.js
# By default, if you did not define this, this would be development
NODE_ENV=test
# Development
DEV_DB_NAME=
DEV_DB_HOST=
DEV_DB_USERNAME=
DEV_DB_PASSWORD=
# Test
TEST_DB_NAME=test-migration
TEST_DB_HOST=127.0.0.1
TEST_DB_USERNAME=root
TEST_DB_PASSWORD=root
# PROD
PROD_DB_NAME=
PROD_DB_HOST=
PROD_DB_USERNAME=
PROD_DB_PASSWORD=
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment