You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by GitBox <gi...@apache.org> on 2018/04/26 09:41:38 UTC

[GitHub] Rolence closed pull request #14: Fix on initial-setup.sh

Rolence closed pull request #14: Fix on initial-setup.sh
URL: https://github.com/apache/fineract-cn-demo-server/pull/14
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/.classpath b/.classpath
new file mode 100644
index 0000000..32b3a1c
--- /dev/null
+++ b/.classpath
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src/main/java"/>
+	<classpathentry kind="src" path="src/main/resources"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
+	<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/.project b/.project
new file mode 100644
index 0000000..df5a340
--- /dev/null
+++ b/.project
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>demo-server</name>
+	<comment>Project demo-server created by Buildship.</comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
+	</natures>
+</projectDescription>
diff --git a/.settings/org.eclipse.buildship.core.prefs b/.settings/org.eclipse.buildship.core.prefs
new file mode 100644
index 0000000..ea96817
--- /dev/null
+++ b/.settings/org.eclipse.buildship.core.prefs
@@ -0,0 +1,2 @@
+#Wed Apr 25 11:01:51 WAT 2018
+connection.project.dir=
diff --git a/bin/logback.xml b/bin/logback.xml
new file mode 100644
index 0000000..e7d2cef
--- /dev/null
+++ b/bin/logback.xml
@@ -0,0 +1,58 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+<configuration>
+    <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
+        <file>logs/service-runner.log</file>
+        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
+            <fileNamePattern>logs/archive/service-runner.%d{yyyy-MM-dd}.log</fileNamePattern>
+            <maxHistory>7</maxHistory>
+            <totalSizeCap>2GB</totalSizeCap>
+        </rollingPolicy>
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
+        </encoder>
+    </appender>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <encoder>
+            <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+    <logger name="com" level="ERROR">
+        <appender-ref ref="STDOUT" />
+    </logger>
+
+    <logger name="org" level="ERROR">
+        <appender-ref ref="STDOUT" />
+    </logger>
+
+    <logger name="io" level="ERROR">
+        <appender-ref ref="STDOUT" />
+    </logger>
+
+    <logger name="net" level="ERROR">
+        <appender-ref ref="STDOUT" />
+    </logger>
+
+    <root level="INFO">
+        <appender-ref ref="FILE"/>
+    </root>
+</configuration>
\ No newline at end of file
diff --git a/bin/org/apache/fineract/cn/dev/ApplicationBuilder.class b/bin/org/apache/fineract/cn/dev/ApplicationBuilder.class
new file mode 100644
index 0000000..9fdd78d
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/ApplicationBuilder.class differ
diff --git a/bin/org/apache/fineract/cn/dev/DemoServer.class b/bin/org/apache/fineract/cn/dev/DemoServer.class
new file mode 100644
index 0000000..90c5c9e
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/DemoServer.class differ
diff --git a/bin/org/apache/fineract/cn/dev/ServiceRunner$TestConfiguration.class b/bin/org/apache/fineract/cn/dev/ServiceRunner$TestConfiguration.class
new file mode 100644
index 0000000..d3c5f09
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/ServiceRunner$TestConfiguration.class differ
diff --git a/bin/org/apache/fineract/cn/dev/ServiceRunner.class b/bin/org/apache/fineract/cn/dev/ServiceRunner.class
new file mode 100644
index 0000000..7e1e0e0
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/ServiceRunner.class differ
diff --git a/bin/org/apache/fineract/cn/dev/TenantBuilder.class b/bin/org/apache/fineract/cn/dev/TenantBuilder.class
new file mode 100644
index 0000000..138a721
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/TenantBuilder.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/AccountingListener.class b/bin/org/apache/fineract/cn/dev/listener/AccountingListener.class
new file mode 100644
index 0000000..91e944f
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/AccountingListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/ChequesListener.class b/bin/org/apache/fineract/cn/dev/listener/ChequesListener.class
new file mode 100644
index 0000000..49925a2
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/ChequesListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/CustomerListener.class b/bin/org/apache/fineract/cn/dev/listener/CustomerListener.class
new file mode 100644
index 0000000..18ae82a
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/CustomerListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/DepositAccountManagementListener.class b/bin/org/apache/fineract/cn/dev/listener/DepositAccountManagementListener.class
new file mode 100644
index 0000000..a952cbd
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/DepositAccountManagementListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/GroupListener.class b/bin/org/apache/fineract/cn/dev/listener/GroupListener.class
new file mode 100644
index 0000000..df8629a
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/GroupListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/IdentityListener.class b/bin/org/apache/fineract/cn/dev/listener/IdentityListener.class
new file mode 100644
index 0000000..c525370
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/IdentityListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/OrganizationListener.class b/bin/org/apache/fineract/cn/dev/listener/OrganizationListener.class
new file mode 100644
index 0000000..7728d3e
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/OrganizationListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/PayrollListener.class b/bin/org/apache/fineract/cn/dev/listener/PayrollListener.class
new file mode 100644
index 0000000..5bef4cd
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/PayrollListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/PortfolioListener.class b/bin/org/apache/fineract/cn/dev/listener/PortfolioListener.class
new file mode 100644
index 0000000..ebb1ac4
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/PortfolioListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/ReportingListener.class b/bin/org/apache/fineract/cn/dev/listener/ReportingListener.class
new file mode 100644
index 0000000..5bc7e5b
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/ReportingListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/RhythmListener.class b/bin/org/apache/fineract/cn/dev/listener/RhythmListener.class
new file mode 100644
index 0000000..d9b0889
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/RhythmListener.class differ
diff --git a/bin/org/apache/fineract/cn/dev/listener/TellerListener.class b/bin/org/apache/fineract/cn/dev/listener/TellerListener.class
new file mode 100644
index 0000000..97c8adb
Binary files /dev/null and b/bin/org/apache/fineract/cn/dev/listener/TellerListener.class differ
diff --git a/scripts/Unix/initial-setup.sh b/scripts/Unix/initial-setup.sh
index 043610d..6f83c1f 100755
--- a/scripts/Unix/initial-setup.sh
+++ b/scripts/Unix/initial-setup.sh
@@ -47,8 +47,6 @@ cd ..
 mkdir tools
 cd tools
 
-cd ..
-
 # REM initialize fineract-cn-crypto
 git clone https://github.com/$githubAccount/fineract-cn-crypto.git
 cd fineract-cn-crypto
@@ -73,4 +71,4 @@ cd fineract-cn-fims-web-app
 git remote add upstream https://github.com/apache/fineract-cn-fims-web-app.git
 npm i
 
-cd ..
+cd ..
\ No newline at end of file


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services