From f2b8e55900a78001944572668d25ddf525f436fc Mon Sep 17 00:00:00 2001 From: difome Date: Wed, 28 Jan 2026 04:55:15 +0200 Subject: [PATCH] update README --- .env.example | 3 --- README.md | 2 -- 2 files changed, 5 deletions(-) diff --git a/.env.example b/.env.example index 4afd715..f5526e5 100644 --- a/.env.example +++ b/.env.example @@ -24,9 +24,6 @@ CHAT_IDS_WHITELIST= # Test environment mode TEST_ENVIRONMENT=false -# Docker deployment -IS_DOCKER=false - # Only creator can use bot ONLY_FOR_CREATOR_MODE=false diff --git a/README.md b/README.md index c4e462a..7fe6d07 100644 --- a/README.md +++ b/README.md @@ -25,14 +25,12 @@ npm run build && npm start **With Docker:** ```bash -# Set IS_DOCKER=true in .env docker build -f Dockerfile -t tg-bot . docker run -d --env-file .env -v $(pwd)/data:/config/data tg-bot ``` **With Docker (Bun):** ```bash -# Set IS_DOCKER=true in .env docker build -f Dockerfile-bun -t tg-bot-bun . docker run -d --env-file .env -v $(pwd)/data:/config/data tg-bot-bun ```