https://github.com/chudik63/science-assistant-bot
Ваш персональный помощник в мире науки: свежие статьи, уведомления и анализ.
https://github.com/chudik63/science-assistant-bot
asyncpg telegram-bot
Last synced: 8 months ago
JSON representation
Ваш персональный помощник в мире науки: свежие статьи, уведомления и анализ.
- Host: GitHub
- URL: https://github.com/chudik63/science-assistant-bot
- Owner: chudik63
- Created: 2025-03-18T09:41:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-22T18:11:56.000Z (about 1 year ago)
- Last Synced: 2025-08-12T13:43:37.745Z (9 months ago)
- Topics: asyncpg, telegram-bot
- Language: Python
- Homepage:
- Size: 69.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Environment Variables
```env
POSTGRES_PASSWORD=password
POSTGRES_USER=user
POSTGRES_DB=database
POSTGRES_PORT=5432
POSTGRES_HOST=localhost
TELEGRAM_TOKEN=
HUGGIN_TOKEN=
```
# Installation
```
pip install -r requirements.txt
```
# Commands for developers
Start postgres. Migrations will be applied automatically:
```
make postgres-up
```
Stop postgres:
```
make postgres-down
```
Clear postgres data:
```
make postgres-clear
```
Start the bot
```
make run
```