Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 557 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 557 Bytes

project

Simple service to send a static link (for example to the mobile app) via SMS through SMSC.RU.

Run docker composer

cp backend/app/.env.example backend/app/settings/.env

docker compose up -d --build app

The API by default is attached to http://localhost:8080/api/v1/

Run linters

After build:

docker compose exec app bash -c "flake8 backend"
docker compose exec app bash -c "cd backend && mypy --config-file ../pyproject.toml ."

Run tests

docker compose exec app bash -c "cd backend && pytest"