Welcome to mirror list, hosted at ThFree Co, Russian Federation.

database.yml.example « config - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c26808d93c26f2055a6f7aaaba6f6fc982ca674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
common: &common
  adapter: mysql2
  host: "localhost" 
  port: 3306
#  socket: /tmp/mysql.sock
  username: "root"
  password: ""
  charset: utf8
  collation: utf8_bin


development:
  <<: *common
  database: diaspora_development

production:
  <<: *common
  database: diaspora_production

test:
  <<: *common
  database: "diaspora_test"