From 998e7da6e4fc9af2d8f17abf4b07dcf2d0895d2a Mon Sep 17 00:00:00 2001 From: Derek Cooper Date: Mon, 11 May 2026 00:51:39 -0700 Subject: [PATCH] added env example file --- BabyBuddy/.env.example | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 BabyBuddy/.env.example diff --git a/BabyBuddy/.env.example b/BabyBuddy/.env.example new file mode 100644 index 0000000..befb285 --- /dev/null +++ b/BabyBuddy/.env.example @@ -0,0 +1,30 @@ +# ----------------------------------------------- +# BabyBuddy - Docker Compose Environment Variables +# ----------------------------------------------- + +# Image version tag (e.g. "latest" or a pinned version like "2.5.1") +BABYBUDDY_VERSION=latest + +# Host port to expose the BabyBuddy web UI on +BABYBUDDY_PORT=8000 + +# User and group ID the container process runs as (match your host user to avoid permission issues) +BABYBUDDY_PUID=1000 +BABYBUDDY_PGID=1000 + +# Timezone for the container (e.g. America/New_York, Europe/London) +BABYBUDDY_TZ=America/Los_Angeles + +# Comma-separated list of trusted origins for Django CSRF protection +# Must include the scheme and host/port you access the app from +BABYBUDDY_ORIGINS=http://127.0.0.1:8000 + +# ----------------------------------------------- +# NFS Volume Configuration +# ----------------------------------------------- + +# IP address or hostname of the NFS server +AIRTRAIL_NFS_SERVER=192.168.1.x + +# NFS export path on the server (e.g. /mnt/pool/docker/babybuddy) +AIRTRAIL_NFS_DEVICE=:/mnt/pool/docker/babybuddy