source: ProjectBuilder/projects/casparbuster/devel/etc/cb/cb.conf@ 1466

Last change on this file since 1466 was 1466, checked in by Bruno Cornec, 12 years ago
File size: 1.8 KB
Line 
1#=head1 NAME
2#
3#.cbrc - Configuration file for CasparBuster
4#
5#=head1 SYNOPSIS
6#
7#Define the main parameters of the CasparBuster application
8#
9#=head1 CONFIGURATION ITEMS
10#
11#=over 4
12#
13#=item B<cbbasedir>
14#
15#Define the base directory under which the configuration is stored.
16#Nature: Mandatory
17#Key: project
18#Value: directory hosting the configuration trees
19#Example: cbbasedir cb = $ENV{'HOME'}/cb
20#
21#=cut
22#
23cbbasedir cb = $ENV{'HOME'}/cb
24#
25#=item B<cbdatabase>
26#
27#Where is stored under that dir the database containing the timestamp information.
28#Using a hidden file by default
29#
30#Nature: Mandatory
31#Key: project
32#Value: Define the database file name
33#Example: cbdatabase cb = .db.cb
34#=cut
35#
36cbdatabase cb = .db.cb
37#
38#=item B<cbusemachines>
39#
40#If I<true>, then adds another level in the tree of configuration giles, corresponding to the machine level.
41#If I<false>, then configuration files and drectory are directly under the I<bcbasedir> directory.
42#If not defined, default to false.
43#
44#Nature: Mandatory
45#Key: project
46#Value: Boolean telling whether we use an additional machine level in the tree
47#Example: cbusemachines cb = false
48#=cut
49#
50cbusemachines cb = false
51#
52#=item B<cbpluginssubdir>
53#
54#Directory where all the plugin configuration files will be installed.
55#There are multiple plugin configuration file to support all the services your system
56#needs to support, and provide support for their files, directies reload script
57#
58#Nature: Mandatory
59#Key: project
60#Value: This subdirectory placed under /etc/cb (default conf dir) contains the plugin conf files
61#Example: cbpluginssubdir cb = plugins
62#=cut
63#
64cbpluginssubdir cb = plugins
65#
66#=item B<cbcms>
67#
68#Configuration Management system (aka VCS) used to store the information
69#Subversion is the value by default
70#
71#Nature: Mandatory
72#Key: project
73#Value: svn|git|hg|cvs|none
74#Example: cbcms cb = svn
75#=cut
76#
77cbcms cb = svn
Note: See TracBrowser for help on using the repository browser.