mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 03:50:15 +00:00
use direnv instead of poetry
This commit is contained in:
13
direnvrc.symlink
Normal file
13
direnvrc.symlink
Normal file
@ -0,0 +1,13 @@
|
||||
layout_poetry() {
|
||||
if [[ ! -f pyproject.toml ]]; then
|
||||
log_error 'No pyproject.toml found. Use `poetry new` or `poetry init` to create one first.'
|
||||
exit 2
|
||||
fi
|
||||
|
||||
# create venv if it doesn't exist
|
||||
poetry run true
|
||||
|
||||
export VIRTUAL_ENV=$(poetry env info --path)
|
||||
export POETRY_ACTIVE=1
|
||||
PATH_add "$VIRTUAL_ENV/bin"
|
||||
}
|
Reference in New Issue
Block a user