aboutsummaryrefslogtreecommitdiff
path: root/pkg
AgeCommit message (Collapse)Author
2024-06-07feat: Add blob endpointGabriel A. Giovanini
2024-06-01ref: Remove muxGabriel A. Giovanini
2024-06-01feat: Add ref supportGabriel A. Giovanini
Now log and tree can be loaded using a given reference.
2024-06-01feat: Add refs pageGabriel A. Giovanini
UI now it is a broken state. I'll all pages working first so I can better style it later.
2024-06-01feat: Add initial logGabriel A. Giovanini
2024-05-30feat: Add git sub pageGabriel A. Giovanini
2024-05-30ref: Move to gorilla muxGabriel A. Giovanini
Go's default mux is very limited while comes to overlapping routes. For example "/{name}/about" conflicts with "/static/" and it throws a panic. In the case I would like static to have precedence over everything else.
2024-05-30feat: Add initial git item pageGabriel A. Giovanini
2024-05-30feat: Add navbar selectionGabriel A. Giovanini
2024-05-27feat: Wraps handler into its own packageGabriel A. Giovanini
Although this creates more complex folder structure will allow in the feature for a easier testing of those given handlers.
2024-05-26feat: Add about pageGabriel A. Giovanini
2024-05-26feat: Add actual git listing implementationGabriel A. Giovanini
2024-05-26feat: Add bare bones project listGabriel A. Giovanini
2024-05-25feat: Add utilsGabriel A. Giovanini
2024-05-04feat: Close worker on errorGabriel A. Giovanini
If a worker error the application, as a whole, is terminadated.
2024-05-04feat: Add config parsingGabriel A. Giovanini
2024-05-01feat: Initial http server codeGabriel A. Giovanini