notifier/README.md
Untone e22d5468ab
All checks were successful
deploy / deploy (push) Successful in 1m11s
0.1.0-fixes
2023-12-22 12:09:03 +03:00

30 lines
632 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# notifier
### Что делает
- слушает Redis PubSub канал с обновлениями реакций
### Что НЕ делает
- не отправляет сообщения по SSE
## Как разрабатывать локально
1 Читаем доки [strawberry](https://strawberry.rocks/docs/general/schema-basics)
2 Устанавливаем локальные хранилища
- Redis
- Postgres
3 Запуск локального сервера
```shell
mkdir .venv
python3.12 -m venv .venv
poetry env use .venv/bin/python3.12
poetry update
poetry run strawberry server main
```