Zammad-Rolle
This commit is contained in:
commit
a6b16394ed
27 changed files with 552 additions and 0 deletions
44
templates/database.yml.j2
Normal file
44
templates/database.yml.j2
Normal file
|
@ -0,0 +1,44 @@
|
|||
# this is a database config sample for zammad ready to use with a postgresql db
|
||||
# copy or symlink this file to config/database.yml to use it
|
||||
|
||||
default: &default
|
||||
# For details on connection pooling, see Rails configuration guide
|
||||
# http://guides.rubyonrails.org/configuring.html#database-pooling
|
||||
pool: 50
|
||||
timeout: 5000
|
||||
encoding: utf8
|
||||
|
||||
##### postgresql config #####
|
||||
|
||||
adapter: postgresql
|
||||
username: {{ zammad_database_user }}
|
||||
password: {{ zammad_database_password }}
|
||||
|
||||
# If the database server is not on localhost, you can set hostname and port:
|
||||
host: {{ database_host }}
|
||||
# port:
|
||||
|
||||
#### mysql config #####
|
||||
|
||||
# adapter: mysql2
|
||||
# username: zammad
|
||||
# password: <Password>
|
||||
|
||||
# If the database server is not on localhost, you can set hostname and port:
|
||||
# host:
|
||||
# port:
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
database: {{ zammad_database_name }}
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
database: zammad_development
|
||||
|
||||
# Warning: The database defined as "test" will be erased and
|
||||
# re-generated from your development database when you run "rake".
|
||||
# Do not set this db to the same as development or production.
|
||||
test:
|
||||
<<: *default
|
||||
database: zammad_test
|
Loading…
Add table
Add a link
Reference in a new issue