imag/README.md

153 lines
6.0 KiB
Markdown
Raw Normal View History

2016-08-01 14:37:09 +00:00
# imag - [imag-pim.org](http://imag-pim.org)
2015-10-30 22:52:43 +00:00
2016-10-03 18:44:06 +00:00
`imag` is a commandline personal information management suite.
[![Build Status](https://travis-ci.org/matthiasbeyer/imag.svg?branch=master)](https://travis-ci.org/matthiasbeyer/imag)
[![Issue Stats](http://www.issuestats.com/github/matthiasbeyer/imag/badge/pr?style=flat-square)](http://www.issuestats.com/github/matthiasbeyer/imag)
[![Issue Stats](http://www.issuestats.com/github/matthiasbeyer/imag/badge/issue?style=flat-square)](http://www.issuestats.com/github/matthiasbeyer/imag)
2016-08-29 06:33:49 +00:00
[![license](https://img.shields.io/github/license/matthiasbeyer/imag.svg?maxAge=2592000?style=flat-square)]()
2016-10-27 09:12:20 +00:00
**This application is in early development. There are _some_ things that work,
but we do not consider anything stable or usable at this moment. Feel free to
play around anyways.**
2016-10-27 09:12:46 +00:00
## Goal / What is imag?
2016-10-03 18:44:06 +00:00
Our (long-term) goal is to
2016-10-03 18:44:06 +00:00
> Create a fast, reliable commandline personal
> information management suite which covers all aspects of personal information
> management, consists of reusable parts and integrates well with known
> commandline tools.
2016-10-27 09:12:46 +00:00
imag is a PIM _helper_. We do not actually implement the PIM functionality, but
try to interface with existing PIM tools (via their API or via some standard
format they use, e.g. vcard) to make the data they manage _linkable_
and _queryable_ in an uniform way.
imag consists of _modules_ (e.g. `imag-notes`, `imag-diary`), where each module
covers one PIM aspect.
The initial approach is to use one PIM tool for one module.
So you can use `imag-todo` with [taskwarrior](https://taskwarrior.org/)
but `imag-calendar` with [icalendar](https://en.wikipedia.org/wiki/ICalendar)
files.
## Building/Running
2016-10-03 18:44:06 +00:00
Here goes how to try `imag` out.
2016-10-27 09:13:54 +00:00
`imag` is a _suite/collection_ of tools and you can build them individually.
2016-10-03 18:44:06 +00:00
All subdirectories prefixed with "`libimag"` are libraries for the respective
binaries.
All subdirectories prefixed with `"imag-"` are binaries and compiling them will
give you a commandline application.
2016-07-30 10:33:55 +00:00
### Building
2016-10-27 09:13:54 +00:00
We use `make` to automate the build process (as `cargo` is not (yet?) able to
build several applications at once).
Make sure to _not_ include some `-j 8` arguments, as cargo parallelizes the
build process on its own. If you parallelize it with make, you end up with a
really high load on your system.
There are several targets for each of the sub-crates in the Makefile:
| Target | Multi | Purpose | Example |
| :--- | ----- | :--- | :--- |
| all | | Build everything, debug mode | `make all` |
| bin | | Build all binaries, debug mode | `make bin` |
| lib | | Build all libraries, debug mode | `make lib` |
| lib-test | | Test all libraries | `make lib-test` |
| imag-bin | | Build only the `imag` binary, debug mode | `make imag-bin` |
| check | * | Run `cargo check` | `make check` |
| clean | * | Remove build artifacts | `make clean` |
| install | * | Build everything, release mode, install | `make install` |
| release | * | Build everything, release mode | `make release` |
| update | * | Run `cargo update` | `make update` |
The `Multi` targets are callable for each sub-crate. For example you can call
`make imag-bookmark-check` to run `cargo check` on the `imag-bookmark` subcrate.
### Running
To test out a single module, simply using `cargo run -- <options>` in the
2016-10-03 18:44:06 +00:00
respective directory will do the trick.
But you can also `make <module>` and call the binary on the commandline.
For using it "normally", install the
binaries as described above, as well as the imag-binary:
2016-10-03 18:44:06 +00:00
```
$> make install
```
2016-10-03 18:44:06 +00:00
The installation root of the binaries may not yet be in your $PATH.
2016-10-04 11:49:41 +00:00
To see where this installation root is check out `man cargo-install`.
2016-10-03 18:44:06 +00:00
To change the $PATH in bash:
2016-07-30 10:33:55 +00:00
```bash
$> PATH=$PATH:~/.cargo/bin
$> imag --help
```
2016-07-30 10:33:55 +00:00
To test, simply add `--help` to one of the above commands:
```bash
$> imag counter --help
2016-07-30 10:33:55 +00:00
```
2016-10-07 15:16:45 +00:00
## Staying up-to-date
Despite we have a [official site for imag](http://imag-pim.org), I do not push
updates to this site, yet. Anyways, I post a blog articles about what happened
in the last two weeks every other week.
You can find them
[on my personal blog, tagged "imag"](http://beyermatthias.de/tags/imag.html)
I also post these blog posts
[on reddit](https://www.reddit.com/r/rust/search?q=What%27s+coming+up+in+imag&restrict_sr=on)
and submit them to [this-week-in-rust](https://this-week-in-rust.org/).
From time to time I publish an article about imag which does not focus on some
things that are happening, but rather about something more general.
## Documentation
2016-10-03 18:44:06 +00:00
For detailed information, please read [the documentation](./doc/).
You can either read the Markdown files or compile it to HTML/PDF using
[pandoc](http://pandoc.org).
Developer documentation is also available
[online on github.io](https://matthiasbeyer.github.io/imag/imag_documentation/index.html).
2015-10-30 22:52:43 +00:00
2016-07-30 10:33:55 +00:00
Please note that the documentation is work in progress as well and may be
outdated.
2016-10-03 18:44:06 +00:00
## Please contribute!
2016-10-04 11:49:57 +00:00
We are looking for contributors!
2016-10-03 18:44:06 +00:00
There is always a number of
[complexity/easy tagged issues](https://github.com/matthiasbeyer/imag/issues?q=is%3Aopen+is%3Aissue+label%3Acomplexity%2Feasy)
available in the issue tracker you can start with and we are open to questions!
Feel free to open issues for asking questions, suggesting features or other
things!
Also have a look at [the CONTRIBUTING.md file](./CONTRIBUTING.md)!
## Contact
2016-08-02 12:22:58 +00:00
Have a look at [our website](http://imag-pim.org) where you can find some
information on how to get in touch and so on.
2016-08-02 12:22:58 +00:00
Feel free to join our new IRC channel at freenode: #imag
or our [mailinglist](http://imag-pim.org/mailinglist/).
## License
2015-11-30 15:30:20 +00:00
We chose to distribute this software under terms of GNU LGPLv2.1.
2015-11-08 16:35:11 +00:00
This decision was made to ensure everyone can write applications which use the
imag core functionality which is distributed with the imag source distribution.
2015-11-08 16:35:11 +00:00