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
#!/bin/bash | |
if [ "$#" -ne 3 ]; then | |
echo "Usage: $0 <APP_ID> <OWNER_REPO_NAME> <PRIVATE_KEY_PATH>" | |
exit 1 | |
fi | |
APP_ID="$1" | |
OWNER_REPO_NAME="$2" | |
PRIVATE_KEY_PATH="$3" |
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
div.js-timeline-item div.js-socket-channel[data-url*="deployed_event"] { | |
display: none !important; | |
} |
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
echo -e "\nPlease enter your Auth0 credentials:\n" | |
read -sp "Enter your Client ID: " CLIENT_ID | |
echo -e "\n" | |
read -sp "Enter your Client Secret: " CLIENT_SECRET | |
echo -e "\n" | |
read -sp "Enter your Domain: " DOMAIN | |
echo -e "\n" |