carga
This commit is contained in:
15
instalador/variables/_app.sh
Normal file
15
instalador/variables/_app.sh
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Variables to be used for background styling.
|
||||
|
||||
# app variables
|
||||
|
||||
jwt_secret=$(openssl rand -base64 32)
|
||||
jwt_refresh_secret=$(openssl rand -base64 32)
|
||||
|
||||
db_pass=$(openssl rand -base64 32)
|
||||
|
||||
db_user=$(openssl rand -base64 32)
|
||||
db_name=$(openssl rand -base64 32)
|
||||
|
||||
deploy_email=deploy@deploy.com
|
||||
6
instalador/variables/_background.sh
Normal file
6
instalador/variables/_background.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Variables to be used for background styling.
|
||||
|
||||
# color
|
||||
readonly BG_BROWN="\e[0;43m"
|
||||
16
instalador/variables/_fonts.sh
Normal file
16
instalador/variables/_fonts.sh
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Variables to be used for font styling.
|
||||
|
||||
# color
|
||||
readonly RED="\033[1;31m"
|
||||
readonly GREEN="\033[1;32m"
|
||||
readonly BLUE="\033[1;32m"
|
||||
readonly WHITE="\033[1;37m"
|
||||
readonly YELLOW="\033[1;33m"
|
||||
readonly GRAY_LIGHT="\033[0;37m"
|
||||
readonly CYAN_LIGHT="\033[1;36m"
|
||||
|
||||
# thickness
|
||||
readonly BOLD=$(tput bold)
|
||||
readonly NORMAL=$(tput sgr0)
|
||||
5
instalador/variables/_general.sh
Normal file
5
instalador/variables/_general.sh
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Special variables to be used for general purposes.
|
||||
|
||||
readonly NC="\033[0m" # reset colors
|
||||
6
instalador/variables/manifest.sh
Normal file
6
instalador/variables/manifest.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
source "${PROJECT_ROOT}"/variables/_app.sh
|
||||
source "${PROJECT_ROOT}"/variables/_general.sh
|
||||
source "${PROJECT_ROOT}"/variables/_background.sh
|
||||
source "${PROJECT_ROOT}"/variables/_fonts.sh
|
||||
Reference in New Issue
Block a user