2022-09-12 20:45:37 +02:00
|
|
|
# LibreTime Analyzer
|
2020-12-30 14:17:50 +01:00
|
|
|
|
2022-09-12 20:45:37 +02:00
|
|
|
LibreTime Analyzer is a service that analyze file as background jobs and move them into the storage.
|
2020-12-30 14:17:50 +01:00
|
|
|
|
2022-09-12 20:45:37 +02:00
|
|
|
## Development
|
2020-12-30 14:17:50 +01:00
|
|
|
|
|
|
|
```bash
|
2022-09-12 20:45:37 +02:00
|
|
|
# Install dependencies
|
|
|
|
make install
|
|
|
|
# Activate the development environment
|
|
|
|
source .venv/bin/activate
|
2020-12-30 14:17:50 +01:00
|
|
|
|
2022-09-12 20:45:37 +02:00
|
|
|
# Run linters
|
|
|
|
make lint
|
2020-12-30 14:17:50 +01:00
|
|
|
|
2022-09-12 20:45:37 +02:00
|
|
|
# Run tests
|
|
|
|
make test
|
2020-12-30 14:17:50 +01:00
|
|
|
|
2022-09-12 20:45:37 +02:00
|
|
|
# See the Makefile for more commands
|
|
|
|
cat Makefile
|
2020-12-30 14:17:50 +01:00
|
|
|
```
|