From 52f9fafc65d81fc8f684dee21f895e85a14c8165 Mon Sep 17 00:00:00 2001 From: Joris Date: Mon, 4 Jul 2016 19:36:16 +0200 Subject: Update getting started section in README --- README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index a4596ea..5adcea6 100644 --- a/README.md +++ b/README.md @@ -2,28 +2,32 @@ Share costs with a group of people. -## Install nix +## Getting started + +Install nix: ``` curl https://nixos.org/nix/install | sh ``` -## Usage - -Open a nix shell: +Inside the project directory, open a nix shell: ``` nix-shell ``` -Then: +Inside tmux, add some users with sqlite after the migration is done: ``` -make install -make build -make watch +sqlite3 database +insert into user(creation, email, name) values (datetime('now'), 'john@mail.com', 'John'); +insert into user(creation, email, name) values (datetime('now'), 'lisa@mail.com', 'Lisa'); ``` +## Configuration + +[application.conf](application.conf) + ## TODO - Income CRUD -- cgit v1.2.3