forked from eduardolat/pgbackweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.dev
14 lines (11 loc) · 774 Bytes
/
.env.dev
1
2
3
4
5
6
7
8
9
10
11
12
13
14
###############################################################################
# ⚠️ Do not use this file in production. This is only for development purposes.
###############################################################################
# This values are configured by default in the compose.yaml file, so you can
# copy this file to .env and use it as is (only for development).
# Encryption key is used to encrypt and decrypt the sensitive data stored
# in the database such as database credentials, secret keys, etc.
PBW_ENCRYPTION_KEY="encryption-key"
# Database connection string for a PostgreSQL database where the pgbackweb
# will store its data.
PBW_POSTGRES_CONN_STRING="postgresql://postgres:[email protected]:5432/pgbackweb?sslmode=disable"