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 { pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
nodejs nodejs
(poetry.override { python3 = python312; }) python3
poetry
]; ];
shellHook = '' shellHook = ''
python -m venv .venv
. .venv/bin/activate
poetry install poetry install
''; '';
} }