I am trying to modify the fabcar network to run my own chaincode. The first thing that I did was replace the fabcar chain code with my own. However, I do not wish to do this every time. Is there a way of modifying paths to point to the required chaincode. I started searching in the ./startFabric.sh file and this is where my doubt is.
CC_SRC_PATH=github.com/fabcar/go
if [ "$LANGUAGE" = "node" -o "$LANGUAGE" = "NODE" ]; then
CC_SRC_PATH=/opt/gopath/src/github.com/fabcar/node
fi
Does this code have the path to the chain code. How can I modify this if my chain code is on my local computer. Or is this path referring to the downloaded folder on my local computer.Seems trivial but I am quite confused Could someone help me with this. Thanks