From ebf79a10d74b50f4a160b19ee111663d55958a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Eduardo=20Jer=C3=A9z=20Gir=C3=B3n?= Date: Fri, 19 Jul 2024 23:34:47 -0600 Subject: [PATCH] Add .env.dev file for development environment configuration --- .env.dev | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .env.dev diff --git a/.env.dev b/.env.dev new file mode 100644 index 0000000..1f5592e --- /dev/null +++ b/.env.dev @@ -0,0 +1,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:password@localhost:5432/pgbackweb"