From 92c3213384f90484448bee13668c58d271648e26 Mon Sep 17 00:00:00 2001 From: saulteafarmer Date: Wed, 14 May 2025 16:13:45 +0000 Subject: [PATCH] Delete .env.example --- .env.example | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .env.example diff --git a/.env.example b/.env.example deleted file mode 100644 index f576756..0000000 --- a/.env.example +++ /dev/null @@ -1,20 +0,0 @@ -# ── PostgreSQL Database Settings ───────────────────────────────────────────── -DB_USER=postgres -# The username your bot will use to connect to Postgres. -# Default Postgres user is “postgres”, but you can lock it down. - -DB_PASS=supersecret -# The password for that DB_USER. Keep this strong and secret. - -DB_NAME=lnbitsdb -# The name of the database that holds your `config`, `plans`, and `subscriptions` tables. -# On first run the `lnbitsdb` DB will be created automatically by the Postgres container. - -DATABASE_URL=postgresql://${DB_USER}:${DB_PASS}@db:5432/${DB_NAME} -# The full SQLAlchemy connection string your bot uses to open the database. -# NOTE: “db” here is the service name from docker-compose, not “localhost”. - -# ── Flask Web UI Settings ──────────────────────────────────────────────────── -FLASK_SECRET=someRandomStringForSessions -# A random string (32+ chars) used by Flask to sign session cookies. -# Change this to something unguessable before going into production. \ No newline at end of file