summaryrefslogtreecommitdiff
path: root/main.go
AgeCommit message (Collapse)Author
2024-03-25Move configuration code to a separate filexengineering
2024-03-25Remove unused function mustRender()xengineering
2024-03-25Remove mustRead()xengineering
This function just increases function nesting and makes the code less readable.
2024-03-24Replace io/ioutil by os packagexengineering
io/ioutil should not be used since Go 1.16.
2024-03-24Replace appdata completely by embed packagexengineering
The embed package makes it useless to handle static files from the source tree during runtime. All those files go simply to the embed.FS variable and are thus embedded into the binary which is easier to handle.
2024-03-24Embed simple.css file into binaryxengineering
This removes the need to deploy the simple.css file to the target machine.
2023-03-27Rework code documentationxengineering
Comments inside functions are not that helpful. While the functino docstring should explain everything to a user, the implementation inside should speak for itself.
2023-03-27Apply `go fmt` to all filesxengineering
2023-03-27Switch to simple.cssxengineering
This very simple CSS framework is far better / beautiful / easy to maintain than my own CSS.
2023-03-27Pass appdata directory by argumentxengineering
Passing this as part of the configuration file is not flexible. With args it can be easily tweaked for the debug use case while the default path for production is included in the argument parsing.
2022-05-16Implement CSS installationxengineering
2022-05-16Introduce appdata configuration optionxengineering
2022-05-16Add configuration of template pathxengineering
2022-05-16Fix default path for configxengineering
2022-05-15Publish codexengineering