Updated docs after implementation of #3

This commit is contained in:
Francesco 2023-10-02 09:27:20 +02:00
parent 1d66169a43
commit 6852080e32
2 changed files with 5 additions and 3 deletions

View File

@ -52,7 +52,8 @@ dbadmin.enabled=true
# The first-level part of the URL path: http://localhost:8080/${baseUrl}/ # The first-level part of the URL path: http://localhost:8080/${baseUrl}/
dbadmin.baseUrl=admin dbadmin.baseUrl=admin
# The package that contains your @Entity classes # The package(s) that contain your @Entity classes
# accepts multiple comma separated values
dbadmin.modelsPackage=put.your.models.package.here dbadmin.modelsPackage=put.your.models.package.here
``` ```

View File

@ -91,8 +91,9 @@
<code class="language-properties"># The first-level part of the URL path: http://localhost:8080/${baseUrl}/ <code class="language-properties"># The first-level part of the URL path: http://localhost:8080/${baseUrl}/
dbadmin.baseUrl=admin dbadmin.baseUrl=admin
# The package that contains your @Entity classes # The package(s) that contain your @Entity classes
dbadmin.modelsPackage=your.models.package # accepts multiple comma separated values
dbadmin.modelsPackage=your.models.package,your.second.models.package
# OPTIONAL PARAMETERS # OPTIONAL PARAMETERS
# Whether to enable to web interface # Whether to enable to web interface