-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lorenzo Pini
committed
May 12, 2020
1 parent
b806fa9
commit 4b88067
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#Default Postgres Connection values | ||
geostoreDataSource.driverClassName=org.postgresql.Driver | ||
geostoreDataSource.url=jdbc:postgresql://database:5432/geostore | ||
geostoreDataSource.username=geostore | ||
geostoreDataSource.password=geostore | ||
geostoreVendorAdapter.databasePlatform=org.hibernate.dialect.PostgreSQLDialect | ||
geostoreEntityManagerFactory.jpaPropertyMap[hibernate.hbm2ddl.auto]=validate | ||
geostoreEntityManagerFactory.jpaPropertyMap[hibernate.default_schema]=geostore | ||
geostoreVendorAdapter.generateDdl=true | ||
geostoreVendorAdapter.showSql=false | ||
|
||
### USERS INITIALIZATION | ||
|
||
## Sample users are "admin" and "user" (this is DEFAULT configuration, already set in the applicationContext) | ||
#geostoreInitializer.categoryListInitFile=classpath:sample_users.xml | ||
## Use this form to point to an absolute file path | ||
#geostoreInitializer.userListInitFile=file://path/to/your/file | ||
|
||
### CATEGORIES INITIALIZATION | ||
|
||
# A couple of sample categories. Use this XML file as template for yours. (this is DEFAULT configuration, already set in the applicationContext) | ||
#geostoreInitializer.categoryListInitFile=classpath:sample_categories.xml | ||
## Use this form to point to an absolute file path | ||
#geostoreInitializer.categoryListInitFile=file://path/to/your/file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters