bonfire-app/.envrc

16 lines
299 B
Plaintext
Raw Normal View History

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
}
2022-07-23 21:43:09 +00:00
env_file_watch
2022-07-23 21:43:09 +00:00
export WITH_DOCKER=no