bud
bud copied to clipboard
The Full-Stack Web Framework for Go
Is there a plan to have a command for generating models and connecting it with database?
Implements #240
This is an experimental v3 of the generator filesystem. The goals are: - Bake in dependency caching so running spawning subprocesses only occurs when dependent files change - Fix minor...
I am very new to bud, I am an indie dev. And was trying out bud, but bun run give me : `-mod=mod not supported (can be '', 'readonly', or...
Hi Matt, I've watched your Youtube video and I love it. It simplified so many steps and the most important is that it integrated frontend and backend together. I'd like...
I tried hosting Bud in Herko, [this app](https://github.com/Bishwas-py/bud-example), but got failed 'cause `bud/app` was just a symlink, not an executable. Here's my procfile... ``` web: bud/app ``` Yeah, I know...
Currently leaning towards: - If in `$GOPATH`, no change in behavior. Infer the module name. - If outside of of `$GOPATH`, follow what Wails does, unless... - you've specified a...
Given the following **controller/controller.go**: ```go package controller type Controller struct {} type User struct { Name string `json:"name"` Email string `json:"email"` } func (c *Controller) Create(name, email string) (*User, error)...
This PR is an experiment to support swapping out the view renderers. Currently we have just one Svelte "viewer", but it'd be nice to be able to define your own...
I want to deploy to ec2, or heroku. How can I do that ? (I'm newbie)