A microservice for sending messages to clients from Google Sheets.
Install dependencies using pip:
pip install -r requirements.txtor Poetry:
poetry installPoetry will install dev-dependencies as well. So use that if you are planning to contribute.
Run the server:
make run_serverand run the Celery worker in the separate process:
make run_celeryYou might want to activate shell first with:
poetry shellDocs can be found in docs folder.
To generate the new docs use:
make docs
Run tests using pytest:
make test