-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update personalization and proxy placeholders for outbound
- Loading branch information
Ruslan Malogulko
committed
Sep 3, 2020
1 parent
c1a78c8
commit 8666f57
Showing
13 changed files
with
38 additions
and
33 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 +1,6 @@ | ||
.idea | ||
.idea | ||
**/personalized-inbound-integration.* | ||
**/personalized-outbound-integration.* | ||
**/node_modules | ||
**/results.txt | ||
content-by-language/node/package*.json |
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,4 +1,4 @@ | ||
#!/bin/bash | ||
echo "{\"bash\": \ | ||
{\"inbound\": $(bash inbound-integration.sh | jq tostring), \ | ||
\"outbound\": $(bash outbound-integration.sh | jq tostring)}}" > results.txt | ||
{\"inbound\": $(bash personalized-inbound-integration.sh | jq tostring), \ | ||
\"outbound\": $(bash personalized-outbound-integration.sh | jq tostring)}}" > results.txt |
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,4 +1,4 @@ | ||
#!/bin/bash | ||
# sed 's/pattern/replacement/flags' | ||
echo "{\"go\": {\"inbound\": \"$(echo $(./inbound-integration) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(./outbound-integration) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt | ||
echo "{\"go\": {\"inbound\": \"$(echo $(./personalized-inbound-integration) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(./personalized-outbound-integration) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
# sed 's/pattern/replacement/flags' | ||
echo "{\"java\": {\"inbound\": \"$(echo $(java inbound-integration.java) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"\"}}" > results.txt | ||
echo "{\"java\": {\"inbound\": \"$(echo $(java personalized-inbound-integration.java) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"\"}}" > results.txt |
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,5 +1,5 @@ | ||
#!/bin/bash | ||
npm install | ||
# sed 's/pattern/replacement/flags' | ||
echo "{\"node\": {\"inbound\": \"$(echo $(node inbound-integration.js) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(node outbound-integration.js) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt | ||
echo "{\"node\": {\"inbound\": \"$(echo $(node personalized-inbound-integration.js) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(node personalized-outbound-integration.js) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
# sed 's/pattern/replacement/flags' | ||
echo "{\"php\": {\"inbound\": \"$(echo $(php inbound-integration.php) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(php outbound-integration.php) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt | ||
echo "{\"php\": {\"inbound\": \"$(echo $(php personalized-inbound-integration.php) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(php personalized-outbound-integration.php) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
pip install -r requirements.txt | ||
# sed 's/pattern/replacement/flags' | ||
echo "{\"python\": {\"inbound\": \"$(echo $(python3 inbound-integration.py) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(python3 outbound-integration.py) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt | ||
echo "{\"python\": {\"inbound\": \"$(echo $(python3 personalized-inbound-integration.py) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(python3 personalized-outbound-integration.py) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
# sed 's/pattern/replacement/flags' | ||
echo "{\"ruby\": {\"inbound\": \"$(echo $(ruby inbound-integration.rb) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(ruby outbound-integration.rb) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt | ||
echo "{\"ruby\": {\"inbound\": \"$(echo $(ruby personalized-inbound-integration.rb) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\", \ | ||
\"outbound\": \"$(echo $(ruby personalized-outbound-integration.rb) | sed 's/\\/\\\\/g' | sed 's/"/\\"/g')\"}}" > results.txt |
Oops, something went wrong.