Add a README
This commit is contained in:
parent
37140b5b59
commit
616a82ebb7
1 changed files with 29 additions and 0 deletions
29
README.md
Normal file
29
README.md
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# TaskBot
|
||||
An automation tool that manages (recurring) tasks stored as issues in a
|
||||
[Forgejo](https://forgejo.org/) repository. It has two main purposes:
|
||||
|
||||
- Rescheduling recurring tasks as soon as they are completed.
|
||||
- Reminding due tasks with batching at the beginning of the month or week.
|
||||
|
||||
## Development
|
||||
Create a `.dev-environment.json` file:
|
||||
|
||||
```json
|
||||
{
|
||||
"dev-token": "<forgejo-api-token>",
|
||||
"server-url": "https://git.example.com",
|
||||
"repo-with-owner": "owner/repo"
|
||||
}
|
||||
```
|
||||
|
||||
Then run:
|
||||
|
||||
```bash
|
||||
RUST_LOG=debug cargo run
|
||||
```
|
||||
|
||||
## Deployment
|
||||
TaskBot is meant to run in CI where it automatically attaches to the issues of
|
||||
the repository it is running from. It should run on a daily schedule.
|
||||
|
||||
Documentation on CI integration is TBD.
|
||||
Loading…
Add table
Add a link
Reference in a new issue