aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 9d6d27bdd2e3649bceab29b451463ccf0614bc63 (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
# marks.budget

## Usage
Manage your personal budget with this site. You can track a ledger of expenses, goals, and recurring expected expenses. A summary view breaks down differences weekly, monthly, and yearly. 

## Installation
Download the repository, run `npm install`, set up a mysql server with a user and a database, 
fill out a `config.json` file as specified below, and then `npm run run`. 

`config.json` should be of the following form
```
{
    "database": {
        "host": "<DB_HOST>",
        "user": "<DB_USER>",
        "database": "<DB_NAME>",
        "password": "<PASSWORD>"
    },
    "port": <PORT_TO_RUN_WEBSERVER_ON>
}

```
## TODO
- Add expected summary (maybe in /summary? compare to averages?)
    - add rolling category values (grocery last month, last year, all time)
- Add graphs
- Add assets/liabilities?
- Add profile page
    - Add initial balance somewhere
    - Reset password
- Add admin page
- Add signup page with code needed