Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dyakovri committed Aug 26, 2023
1 parent 8f58bab commit f4e5d1c
Showing 1 changed file with 47 additions and 2 deletions.
49 changes: 47 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,52 @@ Backend разработка – https://github.com/profcomff/.github/wiki/%5Bde


# Использование
## Настройка сервиса через Docker Compose
```yml
version: '3.8'

services:
postgres:
image: postgres:14
restart: always
networks:
web:
aliases:
- profcomff_pinger-postgres
volumes:
- postgres:/var/lib/postgresql/data
environment:
POSTGRES_USER: pinger
POSTGRES_PASSWORD: qwerty123

backend:
image: ghcr.io/profcomff/aciniformes-project:latest
restart: always
ports:
- 80:80
depends_on:
- postgres
- migration
environment:
- DB_DSN=postgresql://pinger:qwerty123@profcomff_pinger-postgres:5432/postgres
- AUTH_URL=https://api.profcomff.com/auth

pinger:
image: ghcr.io/profcomff/aciniformes-project:latest
restart: always
depends_on:
- postgres
- migration
environment:
- DB_DSN=postgresql://pinger:qwerty123@profcomff_pinger-postgres:5432/postgres
- AUTH_URL=https://api.profcomff.com/auth
command: python -m aciniformes_project worker

volumes:
postgres:
```
## API запросы
1. Создание получателя сообщений
1. Получить или узнать токен telegram бота, через которого будет посылаться сообщение
2. Узнать id чата-получателя в telegram
Expand All @@ -45,5 +91,4 @@ BOT_TOKEN - токен бота-отправителя отчетов

# Ссылки
Документация проекта - https://api.test.profcomff.com/?urls.primaryName=pinger#

Backend разработка – https://github.com/profcomff/.github/wiki/%5Bdev%5D-Backend-разработка
Backend разработка – https://github.com/profcomff/.github/wiki/%5Bdev%5D-Backend-разработка

0 comments on commit f4e5d1c

Please sign in to comment.