1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2024-09-20 20:00:06 -04:00
A personal finance web application written in Go and React/Bootstrap
Go to file
2017-01-03 05:32:19 -05:00
js Actually dispatch errors 2017-01-03 05:32:19 -05:00
scripts Add scripts to generate lists of securities 2016-10-14 21:27:19 -04:00
static Add initial UI for user-editable securities 2016-10-26 06:58:14 -04:00
.gitignore Add user-editable securities, strip hard-coded ones from securities.go 2016-10-16 20:33:23 -04:00
accounts.go Add user-editable securities, strip hard-coded ones from securities.go 2016-10-16 20:33:23 -04:00
db.go Add user-editable securities, strip hard-coded ones from securities.go 2016-10-16 20:33:23 -04:00
errors.go Initial commit 2015-06-25 22:36:58 -04:00
gnucash.go Add Initial Gnucash importing 2016-02-19 20:01:24 -05:00
imports.go Add user-editable securities, strip hard-coded ones from securities.go 2016-10-16 20:33:23 -04:00
libofx.c Initial pass at OFX imports 2016-02-02 21:46:27 -05:00
libofx.go Add user-editable securities, strip hard-coded ones from securities.go 2016-10-16 20:33:23 -04:00
main.go Add user-editable securities, strip hard-coded ones from securities.go 2016-10-16 20:33:23 -04:00
Makefile Add scripts to generate lists of securities 2016-10-14 21:27:19 -04:00
package.json Add package.json, automate installing js packages 2016-10-05 14:17:17 -04:00
README README: Instruct users to install libofx 2016-10-06 07:02:16 -04:00
securities.go Add initial UI for user-editable securities 2016-10-26 06:58:14 -04:00
sessions.go Make sessions PUT and POST return the resulting Session 2016-10-04 19:55:40 -04:00
transactions.go Add user-editable securities, strip hard-coded ones from securities.go 2016-10-16 20:33:23 -04:00
users.go Make users PUT AND POST return the resulting User 2016-10-04 08:01:28 -04:00
util.go backend: Add ability to get Transactions by Account 2015-07-11 08:58:36 -04:00

MoneyGo README

Installation
============

First, install npm and libofx in your distribution:
	$ sudo pacman -S npm libofx

Install browserify globally using npm:
	$ sudo npm install -g browserify

You'll then want to build everything (the Golang and Javascript portions) using
something like:

	$ export GOPATH=`pwd`
	$ go get -v github.com/aclindsa/moneygo
	$ go generate -v github.com/aclindsa/moneygo
	$ go install -v github.com/aclindsa/moneygo

Running
=======

Assuming you're in the same directory you ran the above installation comands
from, running MoneyGo is then as easy as:

	$ ./bin/moneygo \
	  -port 8080 \
	  -base src/github.com/aclindsa/moneygo/