sintonia/worker/README.md

22 lines
311 B
Markdown
Raw Normal View History

2022-09-12 20:45:37 +02:00
# LibreTime Worker
2021-09-02 15:14:24 +02:00
2022-09-12 20:45:37 +02:00
LibreTime Worker is a service that will run background tasks.
2021-09-02 15:14:24 +02:00
2022-09-12 20:45:37 +02:00
## Development
2021-09-02 15:14:24 +02:00
2022-09-12 20:45:37 +02:00
```bash
# Install dependencies
make install
# Activate the development environment
source .venv/bin/activate
2021-09-02 15:14:24 +02:00
2022-09-12 20:45:37 +02:00
# Run linters
make lint
2021-09-02 15:14:24 +02:00
2022-09-12 20:45:37 +02:00
# Run tests
make test
2021-09-02 15:14:24 +02:00
2022-09-12 20:45:37 +02:00
# See the Makefile for more commands
cat Makefile
2021-09-02 15:14:24 +02:00
```