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
- Host: GitHub
- URL: https://github.com/hypnotics-dev/family-finance-tracker
- Owner: hypnotics-dev
- Created: 2024-12-06T01:44:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-06T01:48:36.000Z (over 1 year ago)
- Last Synced: 2025-02-03T13:14:22.212Z (over 1 year ago)
- Language: Java
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
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