Skip to content

Commit 5b5f166

Browse files
authored
Update README.md
1 parent b9ebacb commit 5b5f166

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ If you want to host the application with your own hardware, follow the instructi
1717
#### Dependencies
1818
Download and uncompress the source code for each of following dependencies:
1919

20-
* [ccd-job-queue-0.1.5](https://github.com/bd2kccd/ccd-job-queue/releases/tag/v0.1.5)
21-
* [ccd-mail-0.2.1](https://github.com/bd2kccd/ccd-mail/releases/tag/v0.2.1)
22-
* [ccd-db-0.6.2](https://github.com/bd2kccd/ccd-db/releases/tag/v0.6.2)
20+
* [ccd-job-queue-0.1.6](https://github.com/bd2kccd/ccd-job-queue/releases/tag/v0.1.6)
21+
* [ccd-mail-0.2.2](https://github.com/bd2kccd/ccd-mail/releases/tag/v0.2.2)
22+
* [ccd-db-0.6.3](https://github.com/bd2kccd/ccd-db/releases/tag/v0.6.3)
2323
* [ccd-commons-0.3.1](https://github.com/bd2kccd/ccd-commons/releases/tag/v0.3.1)
2424
To install the dependencies, go to the top directory of each project and do a maven install by typing **mvn install**.
2525

@@ -35,10 +35,10 @@ Download and uncompress the application source code [causal-web-1.3.1](https://
3535
First, you need to create a workspace for the application to work in. Create a directory called **workspace**, for an example ***/home/tuser/workspace***.
3636
Inside the workspace directory, create another folder called **lib**, for example ***/home/tuser/workspace/lib***.
3737

38-
Copy the **causal-cmd-5.3.0.jar** to the **workspace/lib** folder.
38+
Copy the **causal-cmd-6.0.1.jar** to the **workspace/lib** folder.
3939

4040
### Configure
41-
There are 4 configuration files to configure located in causal-web-1.3.0/src/main/resources folder:
41+
There are 4 configuration files to configure located in causal-web-1.3.1/src/main/resources folder:
4242
1. **application-hsqldb.properties**: HSQLDB database configurations (for testing only).
4343
2. **application-mysql.properties**: MySQL database configurations
4444
3. **application.properties**: Spring Boot configurations
@@ -74,18 +74,18 @@ spring.profiles.active=scheduler,mysql
7474
Make sure you set **ccd.server.workspace=/home/tuser/workspace** and **ccd.folder.lib=lib** in the **ccd.properties** file.
7575

7676
## Compile the Program
77-
Go to the **causal-web** directory and run the command **mvn clean package**. This will create a jar file called **causal-web-1.3.0.jar** in the **/target** folder.
77+
Go to the **causal-web** directory and run the command **mvn clean package**. This will create a jar file called **causal-web-1.3.1.jar** in the **/target** folder.
7878

7979
### Launch the Program
8080
```java
81-
java -jar causal-web-1.3.0.jar
81+
java -jar causal-web-1.3.1.jar
8282
```
8383
To give the program 4GB of memory to run on, type the follow, using the jvm options:
8484
```java
85-
java -Xmx4G -jar causal-web-1.3.0.jar
85+
java -Xmx4G -jar causal-web-1.3.1.jar
8686
```
8787

8888
To launch app in the browser
8989
```
9090
http://localhost:[port]/ccd // default port is 8080, otherwise change to specified port
91-
```
91+
```

0 commit comments

Comments
 (0)