uv autosync on startup

This commit is contained in:
Daniel Winkler 2025-06-02 00:00:17 +02:00
commit 2b674e2e00
No known key found for this signature in database
2 changed files with 7 additions and 1 deletions

View file

@ -1,2 +1,3 @@
data/* data/*
!data/.gitkeep !data/.gitkeep
.venv

View file

@ -80,6 +80,11 @@
"--unset PYTHONPATH" "--unset PYTHONPATH"
]; ];
}; };
bashBeforeWrapper = {
pydev = [
"uv sync"
];
};
} }
); );
@ -97,7 +102,7 @@
enable = true; enable = true;
path = { path = {
value = "${pkgs.uv}/bin/uv"; value = "${pkgs.uv}/bin/uv";
args = [ "--add-flags" "run marimo edit"]; args = ["--add-flags" "run marimo edit"];
}; };
}; };
}; };