https://github.com/mathisburger/calculation-flow
Simple application made to be used in SSW for custom calculation configuration
https://github.com/mathisburger/calculation-flow
Last synced: about 1 year ago
JSON representation
Simple application made to be used in SSW for custom calculation configuration
- Host: GitHub
- URL: https://github.com/mathisburger/calculation-flow
- Owner: MathisBurger
- License: mit
- Created: 2024-01-23T15:47:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-14T19:50:24.000Z (over 2 years ago)
- Last Synced: 2025-02-12T20:34:27.253Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 266 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Calculation flow
This application is built for implementation in standard software. It helps to make it easier to
customize specific calculation flows for companies.
## Getting started
Just edit `the application.yml` file for your needs and start the application.
Under `http://localhost:8080` you can find the online configuration web panel. It kinda looks
like from the 90s. This was my intention, because I wanted it to look like modern SSW.
## Running the application in dev mode
You can run your application in dev mode that enables live coding using:
```shell script
./gradlew quarkusDev
```
> **_NOTE:_** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.
## Packaging and running the application
The application can be built using:
```shell script
./gradlew build
# or
./gradlew build -Dquarkus.package.type=native
```