fraenky8 / tables-to-go

convert your database tables to structs easily
MIT License
233 stars 42 forks source link

Where is the SQLite makefile? #32

Closed Snazzyham closed 3 years ago

Snazzyham commented 3 years ago

Sorry if this has been answered before but I'm a little confused, I ran the go get command and it installed the binary into my $PATH, but I can't find the source or anything, so idk where to run the Makefile for SQLite3 from.

Thanks.

fraenky8 commented 3 years ago

Hi @Snazzyham - yes you are right, the instructions are misleading and implying that the go get command willl fetch everything. But it only fetches the repo inside your go modules cache and installs the binary.

To get SQLite support you have to clone this repository and then run the Makefile inside it. Hope it answers your question?

Snazzyham commented 3 years ago

Ahh yes thank you so much that makes sense!