summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-03-07Rework edit page dummyxengineering
Since there are no good solutions to upload the file and markdown description text via HTML forms the edit page will upload the changes using embedded javascript. The page is now complete apart from the necessary javascript code and the backend handlers.
2023-03-07Update navigation linksxengineering
2023-02-12Make add.html a templatexengineering
This allows to use partial HTML files via Go's templating features.
2023-02-12Move footer to own template filexengineering
2023-02-12Move <head/> section to own template filexengineering
This reduces copies of the same HTML code.
2023-02-12Centralize templatingxengineering
This makes templating easier and allows to use partial templates.
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-11Move shutdown code to main.goxengineering
This has nothing to do with the database. Because the db is now a global pointer the shutdown code can live in main.go.
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-11Make multiplexer regular handlersxengineering
Multiplexer functions used to return closures which are able to handle HTTP requests for historc reasons. Now the multiplexers can be regular HTTP handlers which is simpler.
2023-02-11Switch to global database pointerxengineering
Passing the database pointer around is a lot of text and has no benefit.
2023-02-11Migrate storage.go to global configxengineering
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-11Rename router.go to server.goxengineering
This fits better because this file is the central entry point of the Ceres webserver.
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-09Remove commented codexengineering
2023-02-09Split setupRoutes() and runServer()xengineering
2023-02-09Migrate to multiplexer conceptxengineering
This introduces a layered approach to handling HTTP requests: - server layer - path layer - request layer The multiplexer file cares about the path layer. It delegates the request handling to handlers from the request layer.
2023-02-09Rename runtime_config.go to config.goxengineering
It is shorter.
2023-02-09Remove errors.goxengineering
This commit refactors the codebase. The functionality of the error handling is slightly reduced but the benefit are around 80 lines of code which could be removed.
2023-02-08Test mux concept with index handlerxengineering
2023-02-08Move all sources to package mainxengineering
This project is not so big that it needs multiple packages.
2023-02-08Add new recipe edit pagexengineering
Recipes should be completely editable and removable. Thus this edit page was added.
2023-01-11Switch to simple.cssxengineering
This makes it easier to maintain and it looks better.
2022-11-11Update CHANGELOGv0.1.00.1.0xengineering
2022-11-11Document expected environment and dependenciesxengineering
2022-11-11Document packaging and installation in READMExengineering
2022-11-11Mention SQL migrations in CHANGELOGxengineering
2022-11-11Add documenatation for building and runningxengineering
2022-11-11Remove build flag recommendationsxengineering
This was based on recommendations from the Arch Linux wiki. Because they could maybe break something on other distributions they are removed here and maybe re-introduced later in a packaging repository. Furthermore the Makefile is more readable this way.
2022-11-11Ensure that storage folder exists for debuggingxengineering
A not existing data/storage folder could break the program with the debug.json config file used. The .gitkeep file which is introduced with this commit ensures that the folder exists.
2022-11-11Restrict configuration to config filexengineering
This drops also the -d flag and the database/user config option. The -d flag used to override specific parts of the config file. This is just confusing behaviour. Instead a new config/debug.json file is introduced with useful default values. Instead of configuring the database user via the database/user entry in the config file, the user is determined from the Linux user of the server process. This enforces that a database user with the same name as the Linux user is configured which is already described in the README.
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-11Remove user setup from initial migrationxengineering
The initial migration used to add the Ceres database and user. This works well for the production use case but is not that suitable for the development / debugging use case where the default user of the developer should be used. With this commit the generic user setup is explained in the README which can be applied to the developers Linux user aswell as a system user for the production use case.
2022-11-07Link project page and changelog in READMExengineering
2022-11-07Add CHANGELOGxengineering
2022-11-07Add existing workxengineering