Major redesign #73

Merged
lukas merged 45 commits from manage-purchases into main 2024-09-02 15:47:44 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 245b47b8b3 - Show all commits

View File

@ -5,10 +5,13 @@
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
(poetry.override { python3 = python312; })
python3
poetry
];
shellHook = ''
python -m venv .venv
. .venv/bin/activate
poetry install
'';
}