# -*- mode: sh -*-
PATH_add scripts

export WORKSPACE="${WORKSPACE:=$PWD}"

# Set all Locale to en_US.UTF-8
export LANG="en_US.UTF-8"
export LANGUAGE="en_US.UTF-8"

# Avoid "direnv: PS1 cannot be exported" error
unset PS1

# Load environment vars that do not get added to source control
[[ -f "$WORKSPACE/.env" ]] && set -a && source "$WORKSPACE/.env" && set +a
