From 1908f5f61d185aed13814d73b803f2ce08334798 Mon Sep 17 00:00:00 2001 From: Mikkel Georgsen Date: Fri, 16 Jan 2026 18:20:58 +0000 Subject: [PATCH] chore: add .env.example template for bot configuration --- .env.example | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..1c7b2c8 --- /dev/null +++ b/.env.example @@ -0,0 +1,21 @@ +# MoAI Bot Configuration +# Copy this file to .env and fill in your values + +# Telegram Bot Token (required) +# Get this from @BotFather on Telegram +BOT_TOKEN= + +# Allowed Users (optional) +# Comma-separated Telegram user IDs that can use the bot +# Leave empty to allow all users +# To find your user ID, message @userinfobot on Telegram +ALLOWED_USERS= + +# Database URL (optional) +# Defaults to SQLite: sqlite+aiosqlite:///./moai.db +# DATABASE_URL=sqlite+aiosqlite:///./moai.db + +# Log Level (optional) +# Options: DEBUG, INFO, WARNING, ERROR +# Defaults to INFO +# LOG_LEVEL=INFO