aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/ba/back/src (unfollow)
Commit message (Collapse)Author
2025-03-09pkgs/back/config: Also try to open a repo if a directory with `.git` existsBenedikt Peetz
2025-03-09pkgs/back: Do not store repositories in configBenedikt Peetz
Otherwise, back will need to be restarted every time a new repository is added or removed.
2025-03-09pkgs/back: Support listing all repos via the `/` pathBenedikt Peetz
This change required porting all webhandling from rocket to hyper, because we needed fine grained control over the path the user requested. This should also improve the memory and resources footprint because hyper is more lower level. I also changed all of the templates from `format!()` calls to a real templating language because I needed to touch most code paths anyway.
2024-12-31feat(pkgs/back): add comments to rss feedSilas Schöffel
2024-12-27fix(back): add correct links to rss feedBenedikt Peetz
Co-authored-by: Silas Schöffel <sils@sils.li>
2024-12-27feat(back): add rss feedBenedikt Peetz
Co-authored-by: Silas Schöffel <sils@sils.li>
2024-12-27feat(back/src/issues/issue): implement Display for AuthorBenedikt Peetz
Co-authored-by: Silas Schöffel <sils@sils.li>
2024-12-26fix(pkgs/back): Use the errors display trait not debugBenedikt Peetz
Sadly, there seems to be no other way to change the error display, than wrapping main.
2024-12-26chore(pkgs/back): Add missing license headersBenedikt Peetz
2024-12-26fix(pkgs/back): Sort the issues by descending dateBenedikt Peetz
2024-12-26feat(pkgs/back): Rewrite the `git-bug` interface codeBenedikt Peetz
The previous code was more or less reverse engineered, whilst this code is based on the actually git-bug source code. This improves the whole issue and operation handling immensely and also makes the code better maintainable. Furthermore, it also adds support for the operations that had not already used in `vhack.eu/nixos-server.git`.
2024-12-26fix(pkgs/back): Use rocket to manage the configuration valuesBenedikt Peetz
This reduces the amount of needed `unwraps`/`expects` and allows us to streamline the parsing processes.
2024-12-24feat(pkgs/back): Add a link to the source codeBenedikt Peetz
This is required by the AGPL license and should probably also be done, because we do not have a reason to hide or obfuscate the code.
2024-12-23style(treewide): FormatBenedikt Peetz
2024-12-23feat(pkgs/back): InitBenedikt Peetz
Other options, for example `git-bug webui --read-only` is just to bugged to be useful.