tiempo-rs/README.md

139 lines
4.5 KiB
Markdown
Raw Normal View History

2021-06-27 23:20:37 -05:00
# Tiempo
2021-06-27 23:22:50 -05:00
A [timetrap](https://github.com/samg/timetrap/) compatible command line time
2022-09-18 21:54:56 -05:00
tracking application. [Read the fine manual](https://tiempo.categulario.xyz).
2021-06-27 23:20:37 -05:00
2021-08-14 18:47:58 -05:00
## Installation
2022-07-22 06:20:47 -05:00
### For Archlinux (and derivatives) users
There are a binary and a source package in the AUR:
* [tiempo-bin](https://aur.archlinux.org/packages/tiempo-bin)
* [tiempo-git](https://aur.archlinux.org/packages/tiempo-git)
### For every other linux users
Go to [gitlab releases page](https://gitlab.com/categulario/tiempo-rs/-/releases)
and grab the latest binary for your linux. There is a `.deb` file for Debian and
Ubuntu as well as a binary for any `x86_64` Linux.
### For Rust developers
You have `cargo`! you can run:
2021-08-14 18:47:58 -05:00
cargo install tiempo
2022-07-22 06:20:47 -05:00
### For everyone else
You need to compile `tiempo` by yourself. But don't worry! It is not that hard.
Just clone [the repository](https://gitlab.com/categulario/tiempo-rs), make sure
you have [rust installed](https://rustup.rs) and run:
cargo build --release
inside the repository. The binary will be named `t` (or `t.exe` if you use
windows) and it is located inside the `target/release` directory that was
created during compilation.
2021-08-14 18:47:58 -05:00
## Why did you write this instead of improving timetrap?
2021-08-14 11:30:45 -05:00
* timetrap is [hard to install](https://github.com/samg/timetrap/issues/176),
hard to keep [updated](https://github.com/samg/timetrap/issues/174) (because
2022-08-03 08:53:52 -05:00
of ruby). With tiempo you can get (or build) a binary, put it somewhere in
your `PATH`, and it will just work forever in that machine. I'm bundling
sqlite.
* timetrap is slow (no way around it, because of ruby), some commands take up to
a second. Tiempo always feels snappy.
* needed major refactor to fix the timezone problem (in a language I'm not
proficient with). I was aware of this problem and designed tiempo to store
timestamps in UTC while at the same time being able to work with a database
2021-08-14 11:30:45 -05:00
made by timetrap without messing up. And there are a lot of tests backing this
assertions.
### Other advantages
2021-08-14 11:30:45 -05:00
* Columns in the output are always aligned.
* Fixed some input inconsistencies.
2022-08-03 08:53:52 -05:00
* CLI interface is easier to discover (ask -h for any sub-command)
* End times are printed with +1d to indicate that the activity ended the next
2021-08-14 11:30:45 -05:00
day in the 'text' formatter.
2022-08-03 08:53:52 -05:00
* Solved some old issues in timetrap.
* Added new features!
2021-07-03 16:44:31 -05:00
## How to build
2021-06-27 23:20:37 -05:00
You need [rust](https://rustup.rs), then clone the repo and simply run
cargo test
to check that everything is working, and then
cargo build --release
2021-07-03 16:44:31 -05:00
to have a binary at `target/release/t` that you can then move to a
directory in your `PATH` or use it by its absoulte or relative paths.
2021-06-27 23:20:37 -05:00
Run
2021-07-03 16:44:31 -05:00
t --help
2021-06-27 23:20:37 -05:00
to see the options.
2021-07-21 19:07:05 -05:00
### Development database
When developing I prefer not to mess with my own database, so I use this `.env`
file:
export TIMETRAP_CONFIG_FILE=/absolute/path/to/repo/dev_config.toml
PS1="$ "
and when I want to test some commands against such config file I just source it:
source .env
cargo run -- in 'hola'
### Documentation
The docs are written using [sphinx](https://www.sphinx-doc.org/en/master/), so
first you need to install it somehow. Two options I can offer are:
* using your computer's package manager. Install a package with a name similar
to `python-sphinx`.
* using [pipenv](https://duckduckgo.com/?t=ffab&q=pipenv&ia=web). Just ensure
you have python 3.9 on your computer, enter the `docs` directory and do
`pipenv install`.
2022-09-18 21:54:56 -05:00
To build the docs just enter the `docs` directory and run:
make html
2022-09-18 21:54:56 -05:00
for the html version (output located at `docs/build/html`), or
make man
2022-09-18 21:54:56 -05:00
for the man page (output located at `docs/build/man/tiempo.1`). If you
are using pipenv just prefix the commands with `pipenv run` or run `pipenv
shell` before running any command.
2022-09-18 21:54:56 -05:00
The contents of the docs are located in `docs/source/index.rst`,
2021-10-26 20:32:59 -05:00
formatted as
[reStructuredText](https://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html).
2021-07-21 19:07:05 -05:00
## Special Thanks
To [timetrap](https://github.com/samg/timetrap) for existing, to
[samg](https://github.com/samg) for creating it. It is the tool I was looking
for and whose design I took as reference, keeping compatibility when possible.
2022-08-03 08:53:52 -05:00
## Release checklist
(mostly to remind myself)
* [ ] Ensure tests pass and that clippy doesn't complain
2022-09-18 21:54:56 -05:00
* [ ] Add documentation about the new features
* [ ] Create an entry in `CHANGELOG.md` with the target version, stage it but
don't commit
2022-08-03 08:53:52 -05:00
* [ ] run `vbump`
* [ ] git push && git push --tags && cargo publish && cargo build --release && cp target/release/t ~/.local/bin/t