summaryrefslogtreecommitdiff
path: root/main.go
AgeCommit message (Collapse)Author
2023-02-11Switch to global database pointerxengineering
Passing the database pointer around is a lot of text and has no benefit.
2023-02-11Switch webserver to global config structxengineering
2023-02-11Migrate database to global config structxengineering
2023-02-11Remove obvious comments from main.goxengineering
2023-02-09Make config a global structxengineering
Passing the config completly or just partial around via function arguments creates a lot of noice and does not have benefits. The only downside is that it is possible to write the config after initialization but it is realistic that this can be avoided.
2023-02-09Split setupRoutes() and runServer()xengineering
2023-02-08Move all sources to package mainxengineering
This project is not so big that it needs multiple packages.
2022-11-11Remove systemd related partsxengineering
This repository is just about the generic source code. Adapting it to a certain Linux distribution which might be systemd based is up to a packaging repository.
2022-11-07Add existing workxengineering