From e27ae157980419ed994c4be09a9f80debbe2cc00 Mon Sep 17 00:00:00 2001 From: vanitasvitae Date: Mon, 19 Jun 2017 20:40:13 +0200 Subject: [PATCH] Add README --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4e8d8ea --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Home Made OMEMO Client + +This is a repository containing the source code to my +[blog post](https://blogs.fsfe.org/vanitasvitae/2017/06/14/homemo/) about how to +build a home-made OMEMO chat application in less than 200 lines of code. + +## Setup +You can clone the repository using `git clone https://git.fsfe.org/vanitasvitae/HomeMadeOmemo.git` + +Next navigate to the root folder and compile using +``` +cd HomeMadeOmemo/de.vanitasvitae.homemadeomemo +./gradlew build +``` + +## Run +You can run the application as follows: +``` +java -jar build/libs/de.vanitasvitae.homemadeomemo.jar user@server.tld password +```