-
Notifications
You must be signed in to change notification settings - Fork 49
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
44 changed files
with
590 additions
and
5,867 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,12 +1,18 @@ | ||
.cache | ||
.cover | ||
.eliasdb_console_history | ||
coverage.txt | ||
coverage.out | ||
coverage.html | ||
test | ||
/.cache | ||
/.cover | ||
/.eliasdb_console_history | ||
/coverage.txt | ||
/coverage.out | ||
/coverage.html | ||
/test | ||
/dist | ||
build | ||
eliasdb | ||
examples/tutorial/run/ | ||
examples/chat/run/ | ||
/build | ||
/eliasdb | ||
/examples/tutorial/run/ | ||
/examples/chat/run/ | ||
/examples/chat/res/chat/*.lock | ||
/examples/chat/res/chat/*-lock.json | ||
/examples/chat/res/chat/node_modules | ||
/examples/data-mining/docker-images/eliasdb/eliasdb | ||
/examples/data-mining/docker-images/frontend/app/node_modules | ||
/examples/data-mining/docker-images/frontend/app/graphiql |
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
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
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
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,18 @@ | ||
#!/bin/sh | ||
|
||
# Simple script to produce a self-extracting compressed binary | ||
|
||
export compressed_binary=eliasdb_compressed | ||
|
||
echo "cat \$0 | sed '1,/#### Binary ####/d' | gzip -d > ./__e" > $compressed_binary | ||
echo "chmod ugo+x ./__e" >> $compressed_binary | ||
echo "mv ./__e ./\$0" >> $compressed_binary | ||
echo "./\$0" >> $compressed_binary | ||
echo "exit 0" >> $compressed_binary | ||
echo "This is a simple shell script trying to unpack the binary data" >> $compressed_binary | ||
echo "after the marker below. Unpack manually by deleting all lines" >> $compressed_binary | ||
echo "up to and including the marker line and do a gzip -d on the" >> $compressed_binary | ||
echo "binary data" >> $compressed_binary | ||
echo "#### Binary ####" >> $compressed_binary | ||
gzip -c eliasdb >> $compressed_binary | ||
chmod ugo+x $compressed_binary |
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
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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/*! | ||
* | ||
* EliasDB - Chat example | ||
* | ||
* Copyright 2019 Matthias Ladkau. All rights reserved. | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
* | ||
*/ |
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.