-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
24 lines (21 loc) · 1.12 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Backend
NODE_ENV=development # development, production
PORT=7002 # Port for the backend server
# PostgreSQL Database
POSTGRES_USER=postgres # Username for the PostgreSQL database
POSTGRES_PASSWORD=postgres # Password for the PostgreSQL database
POSTGRES_DB=mydb # Database name
POSTGRES_PORT=5432 # Port for the PostgreSQL database
POSTGRESS_EXPOSE_PORT=7001 # Expose port for the PostgreSQL database
# PG Admin
PGADMIN_PORT=7003 # Port for the PG Admin server
PGADMIN_DEFAULT_EMAIL=admin@amdin.com # Default email for PG Admin
PGADMIN_DEFAULT_PASSWORD=admin # Default password for PG Admin
PGADMIN_LISTEN_PORT=80 # Port for the PG Admin server
PGADMIN_CONFIG_SERVER_MODE=False # Server mode for PG Admin
PGADMIN_CONFIG_ENHANCED_COOKIE_PROTECTION=True # Enhanced cookie protection for PG Admin
PGADMIN_CONFIG_ALLOW_SAVE_PASSWORD=True # Allow save password for PG Admin
# Make sure you match all the values with the PostgreSQL database
PGADMIN_DEFAULT_CONNECTION={"Host":"postgres","Port":"5432","MaintenanceDB":"mydb","Username":"postgres","Password":"postgres"}
# Prisma
DATABASE_URL="postgresql://postgres:postgres@localhost:7001/mydb"