Merge branch 'feature/master/174-configuration-docs' into upstream-master
This commit is contained in:
commit
0dadde5141
@ -1,4 +1,4 @@
|
|||||||
# = Redmine configuration file
|
# = ChiliProject configuration file
|
||||||
#
|
#
|
||||||
# Each environment has it's own configuration options. If you are only
|
# Each environment has it's own configuration options. If you are only
|
||||||
# running in production, only the production block needs to be configured.
|
# running in production, only the production block needs to be configured.
|
||||||
@ -87,16 +87,16 @@ default:
|
|||||||
port: 25
|
port: 25
|
||||||
domain: example.net
|
domain: example.net
|
||||||
authentication: :login
|
authentication: :login
|
||||||
user_name: "redmine@example.net"
|
user_name: "chiliproject@example.net"
|
||||||
password: "redmine"
|
password: "chiliproject"
|
||||||
|
|
||||||
# Absolute path to the directory where attachments are stored.
|
# Absolute path to the directory where attachments are stored.
|
||||||
# The default is the 'files' directory in your Redmine instance.
|
# The default is the 'files' directory in your ChiliProject instance.
|
||||||
# Your Redmine instance needs to have write permission on this
|
# Your ChiliProject instance needs to have write permission on this
|
||||||
# directory.
|
# directory.
|
||||||
# Examples:
|
# Examples:
|
||||||
# attachments_storage_path: /var/redmine/files
|
# attachments_storage_path: /var/chiliproject/files
|
||||||
# attachments_storage_path: D:/redmine/files
|
# attachments_storage_path: D:/chiliproject/files
|
||||||
attachments_storage_path:
|
attachments_storage_path:
|
||||||
|
|
||||||
# Configuration of the autologin cookie.
|
# Configuration of the autologin cookie.
|
||||||
@ -110,12 +110,19 @@ default:
|
|||||||
# Configuration of SCM executable command.
|
# Configuration of SCM executable command.
|
||||||
# Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
|
# Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
|
||||||
# On Windows, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
|
# On Windows, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
|
||||||
scm_subversion_command: svn # (default: svn)
|
# Examples:
|
||||||
scm_mercurial_command: "\"C:\Program Files\TortoiseHg\hg.exe\"" # (default: hg)
|
# scm_subversion_command: svn # (default: svn)
|
||||||
scm_git_command: /usr/local/bin/git # (default: git)
|
# scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg)
|
||||||
scm_cvs_command: cvs # (default: cvs)
|
# scm_git_command: /usr/local/bin/git # (default: git)
|
||||||
scm_bazaar_command: bzr.exe # (default: bzr)
|
# scm_cvs_command: cvs # (default: cvs)
|
||||||
scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs)
|
# scm_bazaar_command: bzr.exe # (default: bzr)
|
||||||
|
# scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs)
|
||||||
|
scm_subversion_command:
|
||||||
|
scm_mercurial_command:
|
||||||
|
scm_git_command:
|
||||||
|
scm_cvs_command:
|
||||||
|
scm_bazaar_command:
|
||||||
|
scm_darcs_command:
|
||||||
|
|
||||||
# specific configuration options for production environment
|
# specific configuration options for production environment
|
||||||
# that overrides the default ones
|
# that overrides the default ones
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
production:
|
production:
|
||||||
adapter: mysql
|
adapter: mysql
|
||||||
database: redmine
|
database: chiliproject
|
||||||
host: localhost
|
host: localhost
|
||||||
username: root
|
username: root
|
||||||
password:
|
password:
|
||||||
@ -10,7 +10,7 @@ production:
|
|||||||
|
|
||||||
development:
|
development:
|
||||||
adapter: mysql
|
adapter: mysql
|
||||||
database: redmine_development
|
database: chiliproject_development
|
||||||
host: localhost
|
host: localhost
|
||||||
username: root
|
username: root
|
||||||
password:
|
password:
|
||||||
@ -21,7 +21,7 @@ development:
|
|||||||
# Do not set this db to the same as development or production.
|
# Do not set this db to the same as development or production.
|
||||||
test:
|
test:
|
||||||
adapter: mysql
|
adapter: mysql
|
||||||
database: redmine_test
|
database: chiliproject_test
|
||||||
host: localhost
|
host: localhost
|
||||||
username: root
|
username: root
|
||||||
password:
|
password:
|
||||||
@ -29,7 +29,7 @@ test:
|
|||||||
|
|
||||||
test_pgsql:
|
test_pgsql:
|
||||||
adapter: postgresql
|
adapter: postgresql
|
||||||
database: redmine_test
|
database: chiliproject_test
|
||||||
host: localhost
|
host: localhost
|
||||||
username: postgres
|
username: postgres
|
||||||
password: "postgres"
|
password: "postgres"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user