This commit is contained in:
2022-08-27 22:27:55 +02:00
parent 3e69ac3b91
commit 1497e3e679
6 changed files with 172 additions and 6 deletions

15
.envrc
View File

@@ -2,7 +2,20 @@
# This file is loaded with `direnv`.
# It enters you into the poetry venv, removing the need for `poetry run`.
poetry run true # create venv if it doesn't exist
if command -v nix >/dev/null; then
use nix -p poetry
fi
# Instead of using the flake, we use poetry to manage a development venv
# We only use poetry2nix for deployment
# create venv if it doesn't exist
poetry run true
# enter venv
export VIRTUAL_ENV=$(poetry env info --path)
export POETRY_ACTIVE=1
PATH_add "$VIRTUAL_ENV/bin"
if ! command -v sanic >/dev/null; then
poetry install
fi