mirror of
https://github.com/exo-explore/exo.git
synced 2026-04-20 13:57:17 -04:00
## Changes Mostly chore changes around vscode and jetbrains workspace settings, and some basedpyright settings tweaks, to allow direnv to work and nixd autocomplete with flake parts to work
9 lines
159 B
Bash
9 lines
159 B
Bash
use flake
|
|
|
|
# creates .venv if doesn't exist and loads its environment
|
|
export VIRTUAL_ENV=".venv"
|
|
if ! [ -d "./$VIRTUAL_ENV" ]; then
|
|
uv venv
|
|
fi
|
|
layout python
|