Phorge extensions developed for Recap Time Squad HQ Issue Tracker, available for use as a open-source repo. issues.recaptime.dev/source/phorge-extensions
phorge phorge-extensions phabricator
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(devenv): add envrc config for devenv integration

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+14
+14
.envrc
··· 1 + #!/usr/bin/env bash 2 + export DIRENV_WARN_TIMEOUT=20s GIT_ROOT=$(git rev-parse --show-toplevel) 3 + if [[ -f "${GIT_ROOT}/.envrc.local" ]]; then 4 + source "${GIT_ROOT}/.envrc.local" 5 + fi 6 + 7 + eval "$(devenv direnvrc)" 8 + 9 + # `use devenv` supports the same options as the `devenv shell` command. 10 + # 11 + # To silence all output, use `--quiet`. 12 + # 13 + # Example usage: use devenv --quiet --impure --option services.postgres.enable:bool true 14 + use devenv