blob: 364cbdb48ea9a63cad9b0e65047dbd4fb0ab1639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<% system_odbc_ini_file = '/var/lib/freeswitch/.odbc.ini' %>
<% if !File.exists?(system_odbc_ini_file) %>
development:
adapter: sqlite3
database: db/development.sqlite3
pool: 5
timeout: 5000
production:
adapter: mysql2
encoding: utf8
database: gemeinschaft
pool: 10
username: gemeinschaft
password: gemeinschaft
socket: /var/run/mysqld/mysqld.sock
reconnect: true
<% else %>
<% system_odbc_configuration = IniFile.load(system_odbc_ini_file) %>
<% if !system_odbc_configuration['gemeinschaft']['DATABASE'].blank? && !system_odbc_configuration['gemeinschaft']['USER'].blank? %>
development:
adapter: mysql2
encoding: utf8
database: <%= system_odbc_configuration['gemeinschaft']['DATABASE'] %>
pool: 5
username: <%= system_odbc_configuration['gemeinschaft']['USER'] %>
password: <%= system_odbc_configuration['gemeinschaft']['PASSWORD'] %>
socket: /var/run/mysqld/mysqld.sock
reconnect: true
production:
adapter: mysql2
encoding: utf8
database: <%= system_odbc_configuration['gemeinschaft']['DATABASE'] %>
pool: 10
username: <%= system_odbc_configuration['gemeinschaft']['USER'] %>
password: <%= system_odbc_configuration['gemeinschaft']['PASSWORD'] %>
socket: /var/run/mysqld/mysqld.sock
reconnect: true
<% end %>
<% end %>
# 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:
adapter: sqlite3
database: db/test.sqlite3
pool: 5
timeout: 5000
|