Shared Cost =========== Share costs with a group of people. Getting started --------------- Install nix: ``` curl https://nixos.org/nix/install | sh ``` Inside the project directory, open a nix shell: ``` nix-shell ``` Inside tmux, add some users with sqlite after the migration is done: ``` 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 ------------- See [application.conf](application.conf). TODO ---- - CRUD animation (loading, created-updated-deleted element) - Dates after today must be forbidden - Weekly notifications about added, modified, deleted payments and incomes