aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoris2017-06-05 18:02:13 +0200
committerJoris2017-06-05 18:02:13 +0200
commit0b191f5c48edffc9da3e38c284e9640fd82e7cb1 (patch)
treec729e53822e7c41c1a854d82d25636e58ee65c9f /README.md
parent5c110716cfda6e616a795edd12f2012b132dca9f (diff)
downloadbudget-0b191f5c48edffc9da3e38c284e9640fd82e7cb1.tar.gz
budget-0b191f5c48edffc9da3e38c284e9640fd82e7cb1.tar.bz2
budget-0b191f5c48edffc9da3e38c284e9640fd82e7cb1.zip
Replace persistent by sqlite-simple
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 11 insertions, 6 deletions
diff --git a/README.md b/README.md
index 4b220db..be06d1f 100644
--- a/README.md
+++ b/README.md
@@ -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)