2008-08-02 13:13:21 +00:00
|
|
|
<?php
|
|
|
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# This file is part of InDefero, an open source project management application.
|
2008-08-02 13:18:19 +00:00
|
|
|
# Copyright (C) 2008 Céondo Ltd and contributors.
|
2008-08-02 13:13:21 +00:00
|
|
|
#
|
2008-08-02 13:18:19 +00:00
|
|
|
# InDefero is free software; you can redistribute it and/or modify
|
2008-08-02 13:13:21 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2008-08-02 13:18:19 +00:00
|
|
|
# InDefero is distributed in the hope that it will be useful,
|
2008-08-02 13:13:21 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
$cfg = array();
|
|
|
|
|
2008-08-04 19:24:07 +00:00
|
|
|
// to start with, it can be practical.
|
2008-08-02 13:13:21 +00:00
|
|
|
$cfg['debug'] = false;
|
2008-08-04 19:24:07 +00:00
|
|
|
|
|
|
|
// if you have a single git repository, just put the full path to it
|
|
|
|
// without trailing slash.
|
2008-11-14 14:41:51 +00:00
|
|
|
// If within a folder you have a series of bare git repository, just
|
|
|
|
// put the folder without a trailing slash.
|
2008-08-04 19:24:07 +00:00
|
|
|
// InDefero will automatically append a slash, the project shortname
|
|
|
|
// and .git to create the name of the repository.
|
2008-09-02 13:51:57 +00:00
|
|
|
$cfg['git_repositories'] = '/home/git/repositories/indefero.git';
|
|
|
|
$cfg['git_repositories_unique'] = true;
|
|
|
|
$cfg['git_remote_url'] = 'git://projects.ceondo.com/indefero.git';
|
|
|
|
|
|
|
|
// One git repository per project. "/".$project->shortname.".git"
|
|
|
|
// is automatically added to the end of the path/url.
|
|
|
|
//$cfg['git_repositories'] = '/home/git/repositories';
|
|
|
|
//$cfg['git_repositories_unique'] = false;
|
|
|
|
//$cfg['git_remote_url'] = 'git://projects.ceondo.com';
|
|
|
|
|
|
|
|
// Same as for git, you can have multiple repositories, one for each
|
2008-11-14 14:41:51 +00:00
|
|
|
// project or a single one for all the projects.
|
|
|
|
//
|
|
|
|
// In the case of subversion, the admin of a project can also select a
|
|
|
|
// remote repository from the web interface. From the web interface
|
|
|
|
// you can define a local repository, local repositories are defined
|
|
|
|
// here. This if for security reasons.
|
2008-09-02 13:51:57 +00:00
|
|
|
$cfg['svn_repositories'] = 'file:///home/svn/repositories/indefero';
|
|
|
|
$cfg['svn_repositories_unique'] = true;
|
|
|
|
$cfg['svn_remote_url'] = 'http://projects.ceondo.com/svn/indefero';
|
2008-08-02 13:13:21 +00:00
|
|
|
|
2008-11-14 14:41:51 +00:00
|
|
|
// Example of one *local* subversion repository for each project:
|
|
|
|
|
|
|
|
// the path to the repository on disk will automatically created to be
|
|
|
|
// 'file:///home/svn/repositories'.'/'.$project->shortname
|
|
|
|
// the url will be generated the same way:
|
|
|
|
// 'http://projects.ceondo.com/svn'.'/'.$project->shortname
|
|
|
|
// $cfg['svn_repositories'] = 'file:///home/svn/repositories';
|
|
|
|
// $cfg['svn_repositories_unique'] = false;
|
|
|
|
// $cfg['svn_remote_url'] = 'http://projects.ceondo.com/svn';
|
2008-08-02 13:13:21 +00:00
|
|
|
|
2008-08-04 19:24:07 +00:00
|
|
|
// admins will get an email in case of errors in the system in non
|
|
|
|
// debug mode.
|
2008-08-02 13:13:21 +00:00
|
|
|
$cfg['admins'] = array(
|
|
|
|
array('Admin', 'you@example.com'),
|
|
|
|
);
|
|
|
|
|
2008-08-04 19:24:07 +00:00
|
|
|
// Email configuration
|
2008-08-02 13:13:21 +00:00
|
|
|
$cfg['send_emails'] = true;
|
|
|
|
$cfg['mail_backend'] = 'smtp';
|
|
|
|
$cfg['mail_host'] = 'localhost';
|
|
|
|
$cfg['mail_port'] = 25;
|
|
|
|
|
2008-08-04 19:24:07 +00:00
|
|
|
// Paths/Url configuration
|
2008-09-04 13:30:39 +00:00
|
|
|
#
|
|
|
|
# if you access the index.php with:
|
|
|
|
# http://www.mydomain.com/myfolder/index.php
|
|
|
|
# put the following:
|
|
|
|
#
|
|
|
|
# $cfg['idf_base'] = '/myfolder/index.php';
|
|
|
|
# $cfg['url_base'] = 'http://www.mydomain.com';
|
|
|
|
|
2008-08-02 13:13:21 +00:00
|
|
|
$cfg['idf_base'] = ''; // put '/whatever/index.php if you are not
|
|
|
|
// using mod_rewrite and installing in a
|
|
|
|
// subfolder.
|
|
|
|
$cfg['url_base'] = 'http://projects.ceondo.com';
|
|
|
|
$cfg['url_media'] = 'http://projects.ceondo.com/media';
|
2008-08-04 06:39:00 +00:00
|
|
|
$cfg['url_upload'] = 'http://projects/ceondo.com/media/upload';
|
|
|
|
$cfg['upload_path'] = '/path/to/media/upload';
|
2008-08-02 13:13:21 +00:00
|
|
|
|
2008-11-12 19:40:58 +00:00
|
|
|
#
|
|
|
|
# The following path *MUST NOT* be accessible through a web browser
|
|
|
|
# as user will be able to upload .html, .php files and this can
|
|
|
|
# create *TERRIBLE* security issues.
|
|
|
|
#
|
|
|
|
$cfg['upload_issue_path'] = '/path/to/attachments';
|
|
|
|
|
2008-08-04 19:24:07 +00:00
|
|
|
// write here a long random string unique for this installation. This
|
|
|
|
// is critical to put a long string.
|
|
|
|
$cfg['secret_key'] = '';
|
|
|
|
|
|
|
|
// the sender of all the emails.
|
|
|
|
$cfg['from_email'] = 'sender@example.com';
|
2008-08-02 13:13:21 +00:00
|
|
|
|
|
|
|
// Email address for the bounced messages.
|
|
|
|
$cfg['bounce_email'] = 'no-reply@example.com';
|
|
|
|
|
|
|
|
// Temporary folder where the script is writing the compiled templates,
|
|
|
|
// cached data and other temporary resources.
|
|
|
|
// It must be writeable by your webserver instance.
|
|
|
|
// It is mandatory if you are using the template system.
|
|
|
|
$cfg['tmp_folder'] = '/tmp';
|
2008-08-04 19:24:07 +00:00
|
|
|
|
2008-11-14 14:41:51 +00:00
|
|
|
// Database configuration
|
|
|
|
// For testing we are using in memory SQLite database.
|
|
|
|
$cfg['db_login'] = 'www';
|
|
|
|
$cfg['db_password'] = '';
|
|
|
|
$cfg['db_server'] = '';
|
|
|
|
$cfg['db_version'] = '';
|
|
|
|
$cfg['db_table_prefix'] = '';
|
2008-11-21 12:19:02 +00:00
|
|
|
|
|
|
|
// ** DO NOT USE SQLITE IN PRODUCTION **
|
|
|
|
// This is not because of problems with the quality of the SQLite
|
|
|
|
// driver or with SQLite itself, this is due to the lack of migration
|
|
|
|
// support in Pluf for SQLite, this means we cannot modify the DB
|
|
|
|
// easily once it is loaded with data.
|
2008-11-14 14:41:51 +00:00
|
|
|
$cfg['db_engine'] = 'PostgreSQL'; // SQLite is also well tested or MySQL
|
|
|
|
$cfg['db_database'] = 'website'; // put absolute path to the db if you
|
2008-11-21 12:19:02 +00:00
|
|
|
// are using SQLite.
|
2008-11-14 14:41:51 +00:00
|
|
|
|
|
|
|
// -- From this point you should not need to update anything. --
|
|
|
|
$cfg['pear_path'] = '/usr/share/php';
|
|
|
|
|
|
|
|
$cfg['login_success_url'] = $cfg['url_base'].$cfg['idf_base'];
|
|
|
|
$cfg['after_logout_page'] = $cfg['url_base'].$cfg['idf_base'];
|
|
|
|
|
2008-11-10 14:32:59 +00:00
|
|
|
// Caching of the scm commands.
|
|
|
|
$cfg['cache_engine'] = 'Pluf_Cache_File';
|
|
|
|
$cfg['cache_timeout'] = 300;
|
|
|
|
$cfg['cache_file_folder'] = $cfg['tmp_folder'].'/cache';
|
|
|
|
|
2008-08-02 13:13:21 +00:00
|
|
|
// The folder in which the templates of the application are located.
|
|
|
|
$cfg['template_folders'] = array(
|
|
|
|
dirname(__FILE__).'/../templates',
|
|
|
|
);
|
|
|
|
|
2008-08-04 19:24:07 +00:00
|
|
|
$cfg['installed_apps'] = array('Pluf', 'IDF');
|
|
|
|
$cfg['pluf_use_rowpermission'] = true;
|
|
|
|
$cfg['middleware_classes'] = array(
|
|
|
|
'Pluf_Middleware_Session',
|
2008-08-07 13:35:03 +00:00
|
|
|
'IDF_Middleware',
|
2008-08-04 19:24:07 +00:00
|
|
|
'Pluf_Middleware_Translation',
|
|
|
|
);
|
|
|
|
$cfg['template_context_processors'] = array('IDF_Middleware_ContextPreProcessor');
|
2008-11-18 08:21:49 +00:00
|
|
|
$cfg['idf_views'] = dirname(__FILE__).'/urls.php';
|
2008-08-04 19:24:07 +00:00
|
|
|
$cfg['template_tags'] = array(
|
|
|
|
'hotkey' => 'IDF_Template_HotKey',
|
|
|
|
'issuetext' => 'IDF_Template_IssueComment',
|
2008-11-14 14:41:51 +00:00
|
|
|
'timeline' => 'IDF_Template_TimelineFragment',
|
2008-11-22 22:51:23 +00:00
|
|
|
'markdown' => 'IDF_Template_Markdown',
|
2008-08-04 19:24:07 +00:00
|
|
|
);
|
|
|
|
$cfg['template_modifiers'] = array(
|
|
|
|
'size' => 'IDF_Views_Source_PrettySize',
|
|
|
|
);
|
2008-11-14 14:41:51 +00:00
|
|
|
|
|
|
|
// available languages
|
|
|
|
$cfg['languages'] = array('en', 'fr');
|
|
|
|
|
|
|
|
# SCM base configuration
|
|
|
|
$cfg['allowed_scm'] = array('git' => 'IDF_Scm_Git',
|
|
|
|
'svn' => 'IDF_Scm_Svn',
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2008-08-02 13:13:21 +00:00
|
|
|
return $cfg;
|