view mrjunejune/assistant/BUILD @ 270:358dd5950985

sync production config on every deploy Always install the ignored repository .config into /etc/mrjunejune before promoting the new bundle. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Fri, 07 Aug 2026 13:16:47 -0700
parents 056790c4fb0d
children
line wrap: on
line source

filegroup(
    name = "prompts",
    srcs = [
        "common.md",
        "invited_friend.md",
        "june_admin.md",
        "public_visitor.md",
    ],
    visibility = [
        "//mrjunejune/inference:__pkg__",
        "//mrjunejune:__pkg__",
    ],
)

filegroup(
    name = "knowledge",
    srcs = ["knowledge/public_facts.json"],
    visibility = [
        "//mrjunejune/inference:__pkg__",
        "//mrjunejune:__pkg__",
    ],
)

filegroup(
    name = "all_files",
    srcs = [
        ":knowledge",
        ":prompts",
    ],
    visibility = [
        "//mrjunejune/inference:__pkg__",
        "//mrjunejune:__pkg__",
    ],
)