.NET Solution
Straight out the gate, we have to make sure we have Cake installed, this is neccesary in order to set the project correctly before starting development. (Git Hooks, etc).
So once you have cloned the repository,
head to the root of the repository and run ./cake-setup.ps1
if you are on Windows
or ./cake-setup.sh
if you are on Linux.
This will do a couple of things:
-
Since .NET Core is cross-platform, our setup should also aim at being that way, hence we are leveraging Cake for scripting that’s running on
dotnet
instead of some OS-dependent CLI. -
Following tutorials such as Setting up a new scripting project and Bootstraping Cake, we have setup the bootstrap scripts at the root of the repository, and inside of the
Kakeibro.API
solution folder we have abuild.cake
file present, besides a tool manifest at.config
.
We first ensure that cake is installed and once it is, we run it and it’ll then go and look forbuild.cake
and run all of that code there.-
NOTE: Any extensions needed for this automation step can be done with all of the concepts that have been laid out.
-
-
The Cake script is configured in order to copy the hooks that are at
git-hooks
to the repository’s.git/hooks
folder. Nothing inside of.git
is committed to VC. Hence this intermediary step takes place so that as an initial setup, cake takes care of cleaning, building and testing the freshly cloned solution, and then it sets up hooks for the dev. No manual invervention needed.-
And of course, if you are extending the hooks for whatever reason, you should edit the hook files that are being tracked and then by running Cake they will immediately be copied to
.git/hooks
and the changes to the hooks should now be available to you.
-