forked from trussworks/setup-new-aws-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.envrc
33 lines (26 loc) · 1.01 KB
/
.envrc
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
33
# Also load any .envrc higher up in the directory structure
source_up_if_exists
##########################################
# DO NOT MAKE LOCAL CHANGES TO THIS FILE #
# #
# Vars in this file can be overridden by #
# exporting them in .envrc.local #
##########################################
#########################################
# Language-specific environment layouts #
#########################################
## Golang
# If you're using the gb build tool for Go projects, you may find this layout
# useful for helping many GOPATH-dependent ecosystem tools work seamlessly in
# your projects:
# export GOPATH="$PWD/vendor:$PWD"
# PATH_add "$PWD/vendor/bin"
##############################################
# Load Local Overrides and Check Environment #
##############################################
# Load a local overrides file. Any changes you want to make for your local
# environment should live in that file.
if [ -e .envrc.local ]
then
source_env .envrc.local
fi