From 2f2dc52f7420accfcc427859822f1559084fc5f7 Mon Sep 17 00:00:00 2001 From: sickprodigy Date: Sat, 22 Nov 2025 15:07:59 -0500 Subject: [PATCH] feat: add initial .env configuration for ghostfolio service --- ghostfolio/.env | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ghostfolio/.env diff --git a/ghostfolio/.env b/ghostfolio/.env new file mode 100644 index 0000000..2217db5 --- /dev/null +++ b/ghostfolio/.env @@ -0,0 +1,16 @@ +COMPOSE_PROJECT_NAME=Prodigy-Ghostfolio + +# CACHE +REDIS_HOST=redis +REDIS_PORT=6379 +REDIS_PASSWORD=RedisChangeMe123! + +# POSTGRES +POSTGRES_DB=ghostfolio-db +POSTGRES_USER=yourusername +POSTGRES_PASSWORD=PostgresChangeMe123! + +# VARIOUS +ACCESS_TOKEN_SALT=yourRandomSaltValue +DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}?connect_timeout=300&sslmode=prefer +JWT_SECRET_KEY=openSSL-rand-hex-32byte \ No newline at end of file