diff options
author | Joris | 2017-06-05 18:02:13 +0200 |
---|---|---|
committer | Joris | 2017-06-05 18:02:13 +0200 |
commit | 0b191f5c48edffc9da3e38c284e9640fd82e7cb1 (patch) | |
tree | c729e53822e7c41c1a854d82d25636e58ee65c9f /README.md | |
parent | 5c110716cfda6e616a795edd12f2012b132dca9f (diff) |
Replace persistent by sqlite-simple
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -17,10 +17,10 @@ Install nix: curl https://nixos.org/nix/install | sh ``` -Then: +Start the environment with: -``` -./dev +``` sh +./make start ``` Inside the tmux session, add some users with sqlite after the migration is done: @@ -31,6 +31,12 @@ insert into user(creation, email, name) values (datetime('now'), 'john@mail.com' insert into user(creation, email, name) values (datetime('now'), 'lisa@mail.com', 'Lisa'); ``` +Later, stop the environment with: + +```sh +./make stop +``` + Simple build ------------ @@ -55,10 +61,9 @@ TODO ### Other +- Add payment balance in weekly report - search by payment category and payment date -- Use `sqlite-simple` instead of `persistent` - Move up element ids security (editOwn is actually at db level) -- Prevent a daemon to freeze when it got “SQLite3 returned ErrorBusy while - attempting to perform step.” +- Prevent a daemon to freeze when it got “SQLite3 returned ErrorBusy while attempting to perform step.” - Minify javascript from elm for production build - CRUD animations (loading, created-updated-deleted element) |