domeneshop-updater/.envrc

15 lines
245 B
Plaintext
Raw Permalink Normal View History

2022-07-06 22:46:46 +02:00
#!/usr/bin/env bash
test -d .venv || {
python -m venv .venv
(
source .venv/bin/activate
python -m pip install -r requirements.txt
)
}
source .venv/bin/activate
test -f .envrc.secrets &&\
source .envrc.secrets