This is an automated email from the ASF dual-hosted git repository.
ikamga pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract-cn-demo-server.git
The following commit(s) were added to refs/heads/develop by this push:
new 39dd0b1 Eliminate traces of MariaDB
new 1058438 Merge pull request #34 from Izakey/develop
39dd0b1 is described below
commit 39dd0b1a19708aca3f2f2b8127d272c6f8f1ce65
Author: Isaac Kamga <[email protected]>
AuthorDate: Sun Oct 20 01:16:19 2019 +0100
Eliminate traces of MariaDB
---
README.md | 12 ++++++------
scripts/Unix/initial-setup.sh | 2 +-
scripts/Unix/pull-all.sh | 4 ++--
scripts/windows/initial-setup.bat | 8 ++++----
scripts/windows/pull-all.bat | 4 ++--
5 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/README.md b/README.md
index 99c4311..3aed834 100644
--- a/README.md
+++ b/README.md
@@ -37,11 +37,11 @@ cassandra user to use
##### cassandra.cluster.pwd
cassandra password to use
-##### custom.mariadb.host
-mariadb host to use
+##### custom.postgresql.host
+postgresql host to use
-##### custom.mariadb.user
-mariadb user to use
+##### custom.postgresql.user
+postgresql user to use
-##### custom.mariadb.password
-mariadb password to use
+##### custom.postgresql.password
+postgresql password to use
diff --git a/scripts/Unix/initial-setup.sh b/scripts/Unix/initial-setup.sh
index c9061ec..88d41e0 100755
--- a/scripts/Unix/initial-setup.sh
+++ b/scripts/Unix/initial-setup.sh
@@ -38,7 +38,7 @@ get_modules() {
done
}
-get_modules fineract-cn-lang fineract-cn-api fineract-cn-async
fineract-cn-cassandra fineract-cn-mariadb fineract-cn-data-jpa
fineract-cn-command fineract-cn-test fineract-cn-postgresql
+get_modules fineract-cn-lang fineract-cn-api fineract-cn-async
fineract-cn-cassandra fineract-cn-postgresql fineract-cn-data-jpa
fineract-cn-command fineract-cn-test
# Return to start folder
cd ..
diff --git a/scripts/Unix/pull-all.sh b/scripts/Unix/pull-all.sh
index 1c59f11..b330e8d 100644
--- a/scripts/Unix/pull-all.sh
+++ b/scripts/Unix/pull-all.sh
@@ -35,8 +35,8 @@ get_modules() {
(
cd core
-get_modules fineract-cn-lang fineract-cn-api fineract-cn-async
fineract-cn-cassandra fineract-cn-mariadb fineract-cn-data-jpa \
-fineract-cn-command fineract-cn-test fineract-cn-postgresql
+get_modules fineract-cn-lang fineract-cn-api fineract-cn-async
fineract-cn-cassandra fineract-cn-postgresql fineract-cn-data-jpa \
+fineract-cn-command fineract-cn-test
)
(
diff --git a/scripts/windows/initial-setup.bat
b/scripts/windows/initial-setup.bat
index c9db5ab..17a26fa 100644
--- a/scripts/windows/initial-setup.bat
+++ b/scripts/windows/initial-setup.bat
@@ -50,10 +50,10 @@ CALL gradlew publishToMavenLocal
TIMEOUT /T 5
cd ..
-REM initialize mariadb
-git clone https://github.com/%githubAccount%/fineract-cn-mariadb.git
-cd fineract-cn-mariadb
-git remote add upstream https://github.com/apache/fineract-cn-mariadb.git
+REM initialize postgresql
+git clone https://github.com/%githubAccount%/fineract-cn-postgresql.git
+cd fineract-cn-postgresql
+git remote add upstream https://github.com/apache/fineract-cn-postgresql.git
git checkout develop
CALL gradlew publishToMavenLocal
TIMEOUT /T 5
diff --git a/scripts/windows/pull-all.bat b/scripts/windows/pull-all.bat
index ecdfb57..357b83b 100644
--- a/scripts/windows/pull-all.bat
+++ b/scripts/windows/pull-all.bat
@@ -48,8 +48,8 @@ git push origin develop
TIMEOUT /T 5
cd ..
-REM pull mariadb
-cd fineract-cn-mariadb
+REM pull postgresql
+cd fineract-cn-postgresql
git checkout develop
git pull upstream develop
CALL gradlew publishToMavenLocal