-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
21 lines (17 loc) · 798 Bytes
/
Copy path.env
File metadata and controls
21 lines (17 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# README: Be sure to update .vscode/launch.json to match value in this file
# Program execution environment
NODE_ENV=development
# Contains environment variables for all packages in /packages/*
# SEE projecgts/.env.* for further environment configuration
# Possible way to sent environment variables:
# set -o allexport; source .env; source .env.local; set +o allexport;
# Database (Postgresql)
# * see https://hub.docker.com/_/postgres for information on postgresql
# * If you change the database name (PGDATABASE), then you also need to update
# the database name for the pg_cron configured in db/Dockerfile.
# PGPASSWORD= defined in /.env.*
PGDATABASE=postgres
PGUSER=postgres
PGPORT_CONTAINER=5432
# NOTE: see PGPORT in (see .env.* file such as .env.local ) for final value
PGPORT=5432