bulk rename to flupdt, add CLI, add README, add .gitignore

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-07-29 18:29:54 -04:00
parent adb422829c
commit 18acb7250e
14 changed files with 297 additions and 23 deletions

View File

@ -31,7 +31,7 @@ let
};
# constructs the application in-place
app = pkgs.mkShell { inputsFrom = [ self.packages.${system}.myapp ]; };
flupdt = pkgs.mkShell { inputsFrom = [ self.packages.${system}.flupdt ]; };
# pull in python/poetry dependencies
poetry = pkgs.mkShell { packages = [ pkgs.poetry ]; };
@ -43,7 +43,7 @@ in
inputsFrom = [
pre-commit
rad-dev
app
flupdt
poetry
poetry2nixshell
];