chainkit
chainkit copied to clipboard
Following readme leads to a build error & some questions
to reproduce:
go get github.com/blocklayerhq/chainkit
cd $GOPATH/src/github.com/blocklayerhq/chainkit
make
cp chainkit /usr/local/bin
cd ~/go/src/github.com
chainkit create demoapp
is mostly successful in that the directory is created with some files in it, but the last line ...

Two questions:
- why have the step
cp chainkit /usr/local/binwhich would need to be run again with every new build, rather than havemakedo ago installhere ? That'd be one less line to run - a bit awkward to have the
demoappdirectory created alongside the usernames of repos (a lago get). I don't know a better place to put it, but maybe instructing users to create a repo makes sense. It's what we do with the sdk tutorial. That approach is a bit clunky IMO. Or, have themcd ~before runningchainkit create demoapp
build error was b/c i didn't have docker running so that can be ignored, see #8.
I created a makefile rule to install in one command #16.
However I prefer to keep the demoapp directory as a repo (like go get), I think it's more intuitive.