ivan1993spb / myhomefinance

Home finance analytics

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MyHomeFinance Build Status Go Report Card

Install

make deps
make test
make build

Document examples

Outflow

type Outflow struct {
	Id           int64
	DocumentGUID string
	Time         time.Time
	Name         string
	Amount       float64
	Description  string
	Destination  string
	Target       string
	Count        float64
	MetricUnit   string
	Satisfaction float32
}

inflow

type Inflow struct {
	Id           int64
	DocumentGUID string
	Time         time.Time
	Name         string
	Amount       float64
	Description  string
	Source       string
}

Server params

-addr=127.0.0.1:8080
-file=sql_file.db
-default_satisfaction=0.5

Tools

Code generation:

Links

About

Home finance analytics

License:MIT License


Languages

Language:Go 99.8%Language:Makefile 0.2%