summaryrefslogtreecommitdiff
path: root/config.go
AgeCommit message (Collapse)Author
2024-05-12Move config path from config to flags structxengineering
This is metadata about the config and thus does not belong to the config itself. Moving it to the struct holding flag values is straight forward since it is defined by flags.
2024-05-01Add --config flagxengineering
This re-enables config file support.
2024-05-01Implement parsing of embedded default configxengineering
2023-09-17Remove complete implementationxengineering
Restarting from scratch seems to be the fastest approach to switch to sqlite and get rid of some other structural mistakes from the past.
2023-04-13Apply go fmtxengineering
2023-04-13Do not hardcode data directoryxengineering
2023-04-12Switch to unnested configxengineering
This is now just not needed.
2023-04-02Switch from MariaDB to filesxengineering
Using a database is way more complex (see the commit statistics of this commit) than using files to store recipe data. Also administration and usage is simpler.
2023-03-31Remove image functionalityxengineering
Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release.
2023-02-11Remove most function-inline commentsxengineering
Docstrings for functions are a good thing. But the inside of a function should be written in a way that is self-explaining. Thus inline comments are just extra stuff to maintain and read.
2023-02-11Apply go fmt *.goxengineering
This auto-applies the recommended Go codestyle.
2023-02-11Rework loggingxengineering
Logging during a request is at the moment not really needed. Printing the config to the log was a stupid idea too.
2023-02-09Rename runtime_config.go to config.goxengineering
It is shorter.