mirror of
https://github.com/Cian-H/openwebui_engineering_assistant.git
synced 2025-12-22 20:51:57 +00:00
17 lines
212 B
Nix
17 lines
212 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
packages = [pkgs.git];
|
|
|
|
tasks = {
|
|
"eng-assistant:deploy-stack" = {
|
|
exec = "docker compose up -d";
|
|
before = ["devenv:enterShell"];
|
|
};
|
|
};
|
|
}
|