Skip to content
This repository has been archived by the owner on Apr 9, 2022. It is now read-only.

johanngyger/jmoney

Repository files navigation

JMoney

Build Status codecov MIT licensed

JMoney is a personal finance tracker written in Kotlin/Spring Boot and TypeScript/Angular 2.

The project serves as a non-trivial showcase and demonstrates some core software engineering principles using modern frameworks and programming languages.

Running locally

git clone https://github.com/jogy/jmoney.git
cd jmoney
./gradlew bootRun

Then fire up a browser at http://localhost:8080.

Running with Docker

You can pull a Docker image from Docker Hub:

docker run -ti -p 8080:8080 jogy/jmoney:<tag>

(See https://hub.docker.com/r/jogy/jmoney/tags/ for valid tags.)

You can also build the Docker image before running it:

git clone https://github.com/jogy/jmoney.git
cd jmoney
./gradlew buildDocker
docker run -ti -p 8080:8080 jogy/jmoney

Development