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

Files

Latest commit

ca8e5f7 · Jan 3, 2021

History

History
43 lines (32 loc) · 1.48 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.48 KB

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