#go
#owntracks
#dawarich
#geolocation
#personal
#english
#personal-project
#self-hosted
#gin-gonic
#franken-ui
#htmx
#sqlite https://stuff.graves.cl/posts/2024-12-27_14_43-personal-project-geonerd-a-replacement-for-owntracks.html
Been playing around with #PHP #FatFreeFramework and it’s a lovely functional experience, less OOP, similar to #flask or #GinGonic
https://www.fatfreeframework.com/3.8/getting-started#Hello,World:TheLess-Than-A-MinuteFat-FreeRecipe
@array @funkyduck try #GoLang with #GinGonic and enjoy simplicity like python with the speed of rust.
In this quickstart, we’ll glean insights from code segments and learn how to: Requirements Go 1.16 or above Installation To install Gin package, you need to install Go and set your Go workspace first. Download and install it: $ go get -u github.com/gin-gonic/gin Or install: $ go install github.com/gin-gonic/gin@latest Import it in your code: import "github.com/gin-gonic/gin" (Optional) Import net/http. This is required for example if using constants such as http.StatusOK. import "net/http" Create your project folder and cd inside $ mkdir -p $GOPATH/src/github.