Skip to content

Commit

Permalink
https://github.com/rreganjr/Requel/issues/1
Browse files Browse the repository at this point in the history
I moved the README.md from the website folder to the root so that it shows on the home page of the project.

Signed-off-by: rreganjr <rreganjr@acm.org>
  • Loading branch information
rreganjr committed Feb 9, 2018
1 parent 029557d commit c1d8c82
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
50 changes: 25 additions & 25 deletions website/README.md → README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
## New Executable Jar for Easy Running

The new jar release [Requel-1.0.1.jar](https://sourceforge.net/projects/requel/files/Requel-1.0.1.jar/download) is much easier to use. It has an embedded tomcat web server so you only need to have a MySQL database running. Just pass database settings and port if 8080 is not available:

Pass in the database setting parameters like this:

* **jdbc url** --spring.datasource.url=<url>
* **username** --spring.datasource.username=<username>
* **password** --spring.datasource.password=<password>

Optionally pass the service port like this:

* **port** --server.port=<portnumber>

### Example command

```java -jar Requel-1.0.1.jar --spring.datasource.url=jdbc:mysql://localhost:3306/requeldb?createDatabaseIfNotExist=true --spring.datasource.username=root --spring.datasource.password=password --server.port=8081```


Then access the app http://localhost:8081/

login to the application as **admin** user with password **admin**.

####Note

## New Executable Jar for Easy Running

The new jar release [Requel-1.0.1.jar](https://sourceforge.net/projects/requel/files/Requel-1.0.1.jar/download) is much easier to use. It has an embedded tomcat web server so you only need to have a MySQL database running. Just pass database settings and port if 8080 is not available:

Pass in the database setting parameters like this:

* **jdbc url** --spring.datasource.url=<url>
* **username** --spring.datasource.username=<username>
* **password** --spring.datasource.password=<password>

Optionally pass the service port like this:

* **port** --server.port=<portnumber>

### Example command

```java -jar Requel-1.0.1.jar --spring.datasource.url=jdbc:mysql://localhost:3306/requeldb?createDatabaseIfNotExist=true --spring.datasource.username=root --spring.datasource.password=password --server.port=8081```


Then access the app http://localhost:8081/

login to the application as **admin** user with password **admin**.

####Note

The language analysis is fixed, but new Stanford CoreNLP mode files are huge and doubled the size of the jar to almost 600Mbytes.
2 changes: 1 addition & 1 deletion Requel.iml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" version="4">
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
Expand Down

0 comments on commit c1d8c82

Please sign in to comment.