Gen

From UVOO Tech Wiki
Revision as of 20:07, 4 May 2023 by Busk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

https://github.com/smallnest/gen/issues/140

GO111MODULE=off go get  github.com/gogo/protobuf/proto
export GOPATH=/root/go
PATH=$PATH:~/go/bin
snap install go
apt install make gcc
wget https://github.com/smallnest/gen/raw/master/example/sample.db
go get -u github.com/smallnest/gen
gen --sqltype=sqlite3 \
    --connstr "./sample.db" \
    --database main  \
    --json \
    --gorm \
    --guregu \
    --rest \
    --out ./example \
    --module example.com/rest/example \
    --mod \
    --server \
    --makefile \
    --json-fmt=snake \
    --generate-dao \
    --generate-proj \
    --overwrite
cd example
make example