Builder is designed to quickly scaffold boilerplate code files using templates.
It simply connects to the database defined in .env and fills in the tmpl files in the blueprints folder with varients of field names.
- TableName
personimage_meta - TableNameSpaces
personimage meta - TableNamePascal
PersonImageMeta - TableNameCamel
personimageMeta - TableNameLower
personimagemeta - TableNamePlural
peopleimage_metas - TableNamePluralPascal
peopleImageMetas - TableNamePluralCamel
peopleimageMetas - TableULID
person_ulid - TableULIDPascal
PersonULID - TableULIDCamel
personULID
- LTEqStr
<= - GTEqStr
>= - LTStr
< - GTStr
> - LTEq
<= - GTEq
>= - LT
< - GT
> - LEFT_BRACE
{ - RIGHT_BRACE
}
Currently it generates code for
- table creation / migrations
- RESTful
- models
- list pages (blueprint is for vue 3)
- edit pages (blueprint is for vue 3)
- API definition
Take a look at blueprints for an example. Currently the blueprints are very much tied to my take on a web framework in Golang. I hope to get to a point where I can put it on github in an understandable manor.
__ You can change the blueprints to whatever you want, just follow the naming convention __
go get github.com/nerdynz/builder
add a rest/migrations folder to test migrations
- MIGRATION_PATH
- PROTO_PATH
- ACTIONS_PATH
- RPC_PATH
- SPA_API_PATH
- SPA_ROUTE_PATH
- SPA_VIEW_PATH
- NEW_PROJECT_BASE_DIRECTORY
- case statements and logic are a bit all over the place, first use of bubble tea, so it was a bit of a peacemeal process
- configuration for ID currently its using ULIDs because I favour theme. (this is very non standard)
- configuration paths for output files
(e.g. migrations go to flyway) - configuration for field maping from db to code
- flexiblity around custom constructs e.g.
efile, image_meta, rich_text_meta
e.g.
text becomes string in javascript and go
timestamp becomes Date in javascript but time.Time in go
This utility doesn't need to be specific to go or javascript, so configuration needs to provide that flexiblity (we are just outputting strings.... its not hard)