2023-10-31 10:35:14 -04:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# This script has been created as part of the Blueprint source code
|
|
|
|
# and may be intergrated directly into the core in the future.
|
2023-11-01 08:43:23 -04:00
|
|
|
#
|
|
|
|
# Commands:
|
|
|
|
# - grabAppUrl string
|
|
|
|
# - grabAppDebug bool
|
|
|
|
# - grabAppTimezone string
|
|
|
|
# - grabAppLocale string
|
|
|
|
|
|
|
|
|
2023-10-31 10:35:14 -04:00
|
|
|
|
|
|
|
cd "${BLUEPRINT__FOLDER}"
|
2023-11-01 08:43:23 -04:00
|
|
|
source ${BLUEPRINT__FOLDER}/.env
|
2023-10-31 10:35:14 -04:00
|
|
|
|
2023-11-01 08:43:23 -04:00
|
|
|
grabAppUrl() { echo $APP_URL; }
|
|
|
|
grabAppDebug() { echo $APP_DEBUG; }
|
|
|
|
grabAppTimezone() { echo $APP_TIMEZONE; }
|
|
|
|
grabAppLocale() { echo $APP_LOCALE; }
|