bonfire-app/.envrc
2022-08-01 16:40:30 +12:00

16 lines
299 B
Plaintext

use flake
watch_file deps.nix
watch_file props.nix
function env_file_watch {
config_file_path="config/${MIX_ENV:-dev}"
config_file="${config_file_path}/.env"
if [[ -f ${config_file} ]]; then
watch_file ${config_file}
dotenv ${config_file}
fi
}
env_file_watch
export WITH_DOCKER=no