-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New chart feature, optimized report computation, updated dependencies…
…, prepare release 1.0.1
- Loading branch information
Christian Bauer
committed
Apr 8, 2018
1 parent
0ec42fc
commit bb0c505
Showing
64 changed files
with
2,219 additions
and
452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
*.iml | ||
.idea | ||
.local | ||
.docker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Konto | ||
|
||
## Development IDE setup | ||
|
||
* Import in IntelliJ IDEA | ||
* Create Run Configuration, build and deploy `konto:war exploded` artifact to Wildfly 10.x | ||
* Run GWT SDM code server in background: `mvn gwt:run-codeserver` | ||
* Open http://localhost:8080/ | ||
|
||
## Deployment | ||
|
||
* Make directory for installation: `mkdir .local/` | ||
* Download dependencies JAR files: `mvn dependency:copy-dependencies -DoutputDirectory=.local/lib` | ||
* Run database: `java -jar .local/lib/h2-1.3.158.jar -tcp -tcpPort 9093 -baseDir $PWD/.local/` | ||
* Edit `src/main/resources/hibernate.cfg.xml` | ||
* Either run in IDE or build and deploy WAR manually: `mvn clean package` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package org.fourthline.konto.client; | ||
|
||
public class JsUtil { | ||
|
||
public native static void log(Object o) /*-{ | ||
console.dir(o); | ||
}-*/; | ||
|
||
public native static void printType(Object o) /*-{ | ||
console.log(({}).toString.call(o).match(/\s([a-zA-Z]+)/)[1].toLowerCase()); | ||
}-*/; | ||
|
||
public native static String typeOf(Object o) /*-{ | ||
var type = typeof o; | ||
if (type == 'object') { | ||
return typeof (o.valueOf()); | ||
} else { | ||
return type; | ||
} | ||
}-*/; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.