about summary refs log tree commit diff stats
path: root/pkgs/by-name/ba/back/src/config (follow)
Commit message (Collapse)AuthorAge
* pkgs/back/config: Also try to open a repo if a directory with `.git` existsBenedikt Peetz4 days
|
* pkgs/back: Do not store repositories in configBenedikt Peetz4 days
| | | | | Otherwise, back will need to be restarted every time a new repository is added or removed.
* pkgs/back: Support listing all repos via the `/` pathBenedikt Peetz4 days
| | | | | | | | | | 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.
* fix(back): add correct links to rss feedBenedikt Peetz2024-12-27
| | | | Co-authored-by: Silas Schöffel <sils@sils.li>
* chore(pkgs/back): Add missing license headersBenedikt Peetz2024-12-26
|
* fix(pkgs/back): Use rocket to manage the configuration valuesBenedikt Peetz2024-12-26
This reduces the amount of needed `unwraps`/`expects` and allows us to streamline the parsing processes.