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 | |
# Specify the path to your .env file | |
ENV_FILE=".env" | |
# Function to success color text with green | |
successText() { | |
tput setaf 2 | |
echo "$@" | |
tput sgr0 |
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 | |
# Function to format text as bold | |
boldText() { | |
tput bold | |
echo "$@" | |
tput sgr0 | |
} | |
# Function to default color text as white |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<style> | |
.txt-center { | |
text-align: center; | |
} | |
.hide { | |
display: none; | |
} | |
.clear { | |
float: none; |
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
function createRuler(options) { | |
function loadScript(callback) { | |
var elId = 'draggabilly-script'; | |
if (global.draggabillyScriptIsLoaded){ | |
callback(); | |
return; | |
} |