An open API service indexing awesome lists of open source software.

https://github.com/hypnotics-dev/family-finance-tracker

Fork of a student project, made for archival purposes
https://github.com/hypnotics-dev/family-finance-tracker

Last synced: about 1 year ago
JSON representation

Fork of a student project, made for archival purposes

Awesome Lists containing this project

README

          

* Family Finance Tracker
A group project developped by students

* Building

There is no need to install any build dependencies, they will be installed automatically by gradle

** Windows Commands
#+begin_src sh

gradlew.bat testMerge # Run all tests
gradlew.bat build # Build and run some tests
gradlew.bat run # Build, run and test the application

# To audit dependencies run
gradlew.bat :app:dependencies

#+end_src

** Mac,Linux, *BSD
#+begin_src sh

./gradlew testMerge # Run all tests
./gradlew build # Build and run some tests
./gradlew run # Build, run and test the application

# To audit dependencies run
./gradlew :app:dependencies

#+end_src