blob: 281fff7e0e5d442966584bdc2db3b96b7704a540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
Shared Cost
===========
Share costs with a group of people:
- Share according to people income,
- Monthly payments available,
- Statistics by month,
- Weekly activity sent by email.
Getting started
---------------
Install nix:
```
curl https://nixos.org/nix/install | sh
```
Then:
```
./dev
```
Inside the tmux session, 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');
```
Simple build
------------
```
./build
```
Configuration
-------------
See [application.conf](application.conf).
TODO
----
- Modelize current page for both punctual and monthly payments
- search by payment category
- Use `sqlite-simple` instead of `persistent`
- show charts with payments and categories
- 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.”
- Minify javascript from elm for production build
- CRUD animations (loading, created-updated-deleted element)
|