Skip to content

Commit d036e94

Browse files
committed
fix: correct DATABASE_URL format in .env.example and update readme for command structure
1 parent d79ce3f commit d036e94

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
TELOXIDE_TOKEN=telegram_bot_token
22
GITHUB_TOKEN=github_token
3-
DATABASE_URL=sqlite://data/data.db
4-
POLL_INTERVAL=10
3+
DATABASE_URL=sqlite:data/data.db
4+
POLL_INTERVAL=10

readme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ docker-compose.yml # For running with Docker Compose
5151
migrations
5252
src
5353
├── bot_handler # Telegram bot commands and handlers
54-
│ └── commands # Individual command implementations (add, remove, list, help, start)
54+
│ └── commands # Individual command implementations (add, list, help, etc.)
55+
| └── callbacks # Handlers for callback queries (view repo, toggle label, etc.)
5556
├── config.rs # Environment-based configuration
5657
├── dispatcher.rs # Dispatcher setup for handling Telegram updates
5758
├── github # GitHub API integration using GraphQL

0 commit comments

Comments
 (0)