This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
3,969 additions
and
346 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 |
---|---|---|
|
@@ -19,4 +19,4 @@ project/plugins/project/ | |
|
||
# Vagrant | ||
.vagrant | ||
VERSION | ||
VERSION |
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,3 +1,26 @@ | ||
0.2.0 (2015-07-01) | ||
------------------ | ||
Updated vagrant push to also build and publish webui artifact (#72) | ||
Added NS and CORE settings to Vagrantfile to improve performance (#79) | ||
Removed bin/jarx-stub.sh from project (#71) | ||
Added Elastic Beanstalk deployment using Docker (#70) | ||
Wrote tests for 0.2.0 milestone (#62) | ||
Now getting SchemaVer name from JSON Path (#67) | ||
Added configuration options for self-describing JSON Schema (#17, #19) | ||
Added ability to segment JSON instances based on a JSON property (#48) | ||
Refactored annotators to produce JNothing (#65) | ||
Added enum cardinality option to Web UI (#64) | ||
Now auto-detecting enums with configurable cardinality tolerance (#36) | ||
Now gracefully printing error message and exit app if invalid path given (#51) | ||
Now detecting field contains base64 (#58) | ||
Supported dragging a JSON string (#57) | ||
Added support of newline-delimited JSONs (#56) | ||
Now outputting duplicated keys in Web UI (#61) | ||
Now identifying and warning of misspelt properties (#31) | ||
Created a single-page UI in plain JS (#39) | ||
Added a sbt sub-project to schema-guru which embeds schema-guru in a Spray server (#53) | ||
Fixed incorrectly reduced integer and number (#60) | ||
|
||
0.1.0 (2015-06-03) | ||
------------------ | ||
Initial release |
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
File renamed without changes.
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,10 @@ | ||
# Dockerfile | ||
|
||
FROM java:7 | ||
MAINTAINER Snowplow Analytics, [email protected] | ||
WORKDIR / | ||
USER daemon | ||
EXPOSE 8000 | ||
|
||
ADD start.sh /tmp/ | ||
CMD ./tmp/start.sh |
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,11 @@ | ||
{ | ||
"AWSEBDockerrunVersion": "1", | ||
"Image": { | ||
"Name": "java:7" | ||
}, | ||
"Ports": [ | ||
{ | ||
"ContainerPort": "8000" | ||
} | ||
] | ||
} |
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,7 @@ | ||
#/bin/sh | ||
|
||
# Script must be executable! | ||
cd /tmp | ||
wget -N http://dl.bintray.com/snowplow/snowplow-generic/schema_guru_webui_0.2.0.zip | ||
unzip -o schema_guru_webui_0.2.0.zip | ||
java -jar schema-guru-webui-0.2.0 |
This file was deleted.
Oops, something went wrong.
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.