-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.envrc
More file actions
32 lines (30 loc) · 912 Bytes
/
.envrc
File metadata and controls
32 lines (30 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export GIT_DIR_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
REPO_ROOT="${GIT_DIR_PATH}"
## Source local/ignored .envrc.local for machine-specific environment
source_env_if_exists .envrc.local
########################
# Example .envrc.local #
########################
#
# ############
# # Git vars #
# ############
#
# ## Git roots when running go-task tasks
# export GIT_ROOTS="repos sparse-clones worktrees"
#
# ## Number of subdirectories to include in git scans.
# # Higher number means more system resources used.
# # Default: GIT_MAX_DEPTH="6"
# export GIT_MAX_DEPTH="10"
#
# ## More parallelism = faster scans, higher CPU usage.
# # Default: FETCH_JOBS=6
# export FETCH_JOBS="12"
#
# ## Set to 'true' to save scans run by go-task
# export SAVE_REPORTS=false
#
# ## Directory where reports will be saved.
# # Default: ~/git/.scan_results
# export REPORT_DIR="${GIT_DIR_PATH}/.scan_results"