-
Notifications
You must be signed in to change notification settings - Fork 18
Command line options & settings
If you accidentially forget your password, don't worry. All you have to do is start the BudgetMaster executable with a special command line argument:
java -jar <Path_to_BudgetMaster_executable> --resetPassword
This will reset the password to the default password ("BudgetMaster").
From version 2.4.0
BudgetMaster is supporting a new command line option to override the default save directory, where your settings, database and automatic backups will be stored.
In order to set the save directory to C:/BudgetMaster
start BudgetMaster with the following command:
java -jar BudgetMaster.jar --customFolder="C:/BudgetMaster"
Note: The specified path must be absolute!
Note: The specified folder and all parent directories will be created if they do not exist.
-
property:
server.port=9000
- description: Specifies the port for BudgetMaster
- available since: v2.0.0
-
default:
9000
-
property:
budgetmaster.database.type=postgresql
- description Specifies the database type to use.
- available since: v2.10.0
-
default:
postgresql
-
possible values:
postgresql
andmariadb
(untested)
-
property:
budgetmaster.database.hostname=localhost
- description Specifies the database hostname to connect to.
- available since: v2.10.0
-
default:
localhost
-
property:
budgetmaster.database.port=5432
- description Specifies the database port to connect to.
- available since: v2.10.0
-
default:
5432
-
property:
budgetmaster.database.databaseName=budgetmaster
- description Specifies the database to connect to.
- available since: v2.10.0
-
default:
budgetmaster
-
property:
budgetmaster.database.username=budgetmaster
- description Specifies the user for the database connection.
- available since: v2.10.0
-
default:
budgetmaster
-
property:
budgetmaster.database.password=BudgetMaster
- description Specifies the password for the database connection.
- available since: v2.10.0
-
default:
BudgetMaster
-
property:
server.ssl.keyStoreType=PKCS12
- description Specifies the keystore type to use. DO NOT CHANGE!
- available since: v2.0.0
-
default:
PKCS12
-
property:
server.ssl.enabled=true
- description: Enables/disables SSL encrypted communication between your browser and the server.
- available since: v2.0.0
-
default:
false
-
property:
server.ssl.key-store=<path_to_keystore>
- description*: Specifies the path to the keystore that contains the certificates (How to create certificates). The path can be relative to the location of BudgetMaster jar/exe or absolute.
- available since: v2.0.0
-
default:
<path_to_keystore>
-
property:
server.ssl.key-store-password=<keystore_password>
- description: The password for the keystore.
- available since: v2.0.0
-
default:
<keystore_password>
-
property:
server.ssl.keyAlias=<keystore_alias>
- description: A keystore can contain multiple certificates. The alias is used to refer to the correct one.
- available since: v2.0.0
-
default:
<keystore_alias>
-
property:
budgetmaster.datepicker.simple=false
-
description: If this option is enabled the default graphical pop-up datepicker is disabled when creating new transactions. Dates need to be entered manually instead. Allowed input formats are
DD.MM.YY
,DD.MM.YYYY
,DDMMYYYY
andDDMMYY
. If onlyDD.MM.YY
orDDMMYY
is inserted the year is automatically converted toXXYY
, whereXX
are the two digits of the current century (e.g. 20 for the years 2000 to 2099) andYY
are the entered year value. Note: If using recurring transactions the end date is no longer verified to be after start date. - available since: v2.5.0
-
default:
false