How to add a project to CruiseControl.NET?

I look at the cruisecontrol web dashboard. I see one farm and one server. However, I see no way to add a project?

Can I do something with the user interface or do I need to manually edit the configuration file?

+6
source share
3 answers

You will need to edit the ccnet.config file manually (located in the CruiseControl directory) to add projects. There are some graphical tools to help you do this, but you’re used to doing it manually quite quickly - just place the documentation next to it.

Update: An example of one such tool is http://www.codeplex.com/ccnetconfig

+12
source share

You can use CCNETConfig to edit the configuration file through the user interface, although it does not support the higher version> CruiseControl.NET 1.4.

+1
source share

You should basically edit the configuration file manually, however I configured it so that the raw configuration file was split into different include files, each of which is configured in my version control system. Then I created a project for configuration, and then for the whole configuration. Therefore, when something changes in the configuration, CC.NET itself pulls out the changes, recreates its configuration files and updates the system configuration.

This means that anyone can edit the configuration (if they can access files in sourcecontrol), and no one should go into the program files directory of the CC.NET machine itself.

Not sure if this question answers your question, but this is how our installation works.

+1
source share

All Articles