16 lines
452 B
Plaintext
16 lines
452 B
Plaintext
source_up
|
|
|
|
# export SYNCTHING_USER=$(pass packer-syncthing-user)
|
|
# export SYNCTHING_PW=$(pass packer-syncthing-pw)
|
|
# export SYNCTHING_API_KEY=$(pass packer-syncthing-api-key)
|
|
# export SYNCTHING_CERT_PEM=$(pass packer-syncthing-cert.pem)
|
|
# export SYNCTHING_KEY_PEM=$(pass packer-syncthing-key.pem)
|
|
# export CERTBOT_EMAIL=$(pass certbot-email)
|
|
|
|
if [ -f ".env.local" ]; then
|
|
echo "sourcing .env.local"
|
|
set -a
|
|
source ".env.local"
|
|
set +a
|
|
fi
|