Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Valentijn Scholten <[email protected]>
  • Loading branch information
valentijnscholten committed Jan 12, 2025
1 parent 9643925 commit 976bafa
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -55,35 +55,31 @@ alpine.watchdog.logging.interval=0
# hosts. In embedded mode, the system will be more secure and slightly
# faster. External mode should be used when utilizing an external
# database server (i.e. mysql, postgresql, etc).
alpine.database.mode=external
alpine.database.mode=embedded

# Optional
# Defines the TCP port to use when the database.mode is set to 'server'.
alpine.database.port=5432
alpine.database.port=9092

# Required
# Specifies the JDBC URL to use when connecting to the database.
<<<<<<< Updated upstream
alpine.database.url=jdbc:h2:~/.dependency-track/db;DB_CLOSE_ON_EXIT=FALSE
=======
alpine.database.url=jdbc:postgresql://localhost:5432/deptrack
>>>>>>> Stashed changes

# Required
# Specifies the JDBC driver class to use.
alpine.database.driver=org.postgresql.Driver
alpine.database.driver=org.h2.Driver

# Optional
# Specifies the path (including filename) to where the JDBC driver is located.
# alpine.database.driver.path=/path/to/dbdriver.jar

# Optional
# Specifies the username to use when authenticating to the database.
alpine.database.username=deptrack
alpine.database.username=sa

# Optional
# Specifies the password to use when authenticating to the database.
alpine.database.password=deptrack
# alpine.database.password=

# Optional
# Specifies a path to the file holding the database password.
Expand Down

0 comments on commit 976bafa

Please sign in to comment.