An open API service indexing awesome lists of open source software.

https://github.com/chudik63/science-assistant-bot

Ваш персональный помощник в мире науки: свежие статьи, уведомления и анализ.
https://github.com/chudik63/science-assistant-bot

asyncpg telegram-bot

Last synced: 8 months ago
JSON representation

Ваш персональный помощник в мире науки: свежие статьи, уведомления и анализ.

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
```