Skip to content

Instantly share code, notes, and snippets.

@iksena
Created January 15, 2021 19:32
Show Gist options
  • Save iksena/11cc65326e0c71b44ff88a9fedb5e074 to your computer and use it in GitHub Desktop.
Save iksena/11cc65326e0c71b44ff88a9fedb5e074 to your computer and use it in GitHub Desktop.
yo microservice env template
# ------------------------------------------------------------------
# General
# ------------------------------------------------------------------
SERVICE_NAME=<%= name %>
PORT=3000
LOG_LEVEL=debug
<%_ if (hasDb) { _%>
# ------------------------------------------------------------------
# Database
# ------------------------------------------------------------------
DATABASE_HOST=<%= dbHost %>
DATABASE_PORT=<%= dbPort %>
DATABASE_NAME=<%= dbName %>
DATABASE_USERNAME=<%= dbUser %>
DATABASE_PASSWORD=<%= dbPassword %>
<%_ } _%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment