Removed basedir from the config file as it's always overwritten by the --base-directory cmd line arg

This commit is contained in:
Shams Asari
2017-01-06 19:38:48 +00:00
parent d87c9eb9d2
commit 7cd281364f
39 changed files with 260 additions and 208 deletions

View File

@ -1,4 +1,3 @@
basedir : "./nameserver"
myLegalName : "Notary Service"
nearestCity : "London"
keyStorePassword : "cordacadevpass"

View File

@ -1,11 +1,10 @@
basedir : "./nodea"
myLegalName : "Bank A"
nearestCity : "London"
keyStorePassword : "cordacadevpass"
trustStorePassword : "trustpass"
dataSourceProperties : {
dataSourceClassName : org.h2.jdbcx.JdbcDataSource
"dataSource.url" : "jdbc:h2:"${basedir}"/persistence"
"dataSource.url" : "jdbc:h2:file:"${basedir}"/persistence"
"dataSource.user" : sa
"dataSource.password" : ""
}