stack_wallet/scripts/env.sh

16 lines
460 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
# set project root
THIS_SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
pushd "${THIS_SCRIPT_DIR}/../"
export APP_PROJECT_ROOT_DIR="$(pwd)"
2024-05-22 23:56:51 +00:00
popd
export APP_NAME_PLACEHOLDER="PlaceHolderName"
export APP_ID_PLACEHOLDER="com.place.holder"
export APP_ID_PLACEHOLDER_CAMEL="com.place.holderCamel"
export APP_ID_PLACEHOLDER_SNAKE="com.place.holder_snake"
export APP_BASIC_NAME_PLACEHOLDER="place_holder"