public
Description: Ruby, Rails, Linux environment configuration automation.
Homepage:
Clone URL: git://github.com/mmond/configuration-automation.git
configuration-automation / eldorado.database.yml.txt
100644 36 lines (31 sloc) 0.984 kb
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
development:
  adapter: sqlite3
  database: db/development.sqlite3
  timeout: 5000
  session_key: eldorado_development
  secret: YrDOFOmYJyFg2tTZykCbZjWYQUbKBt
 
test:
  adapter: sqlite3
  database: db/test.sqlite3
  timeout: 5000
  session_key: eldorado_test
  secret: Pl8qJNFc8mo1yt1xtHOmfUGHOPEutu
 
# This "session_key" can be any string, and should be unique to your installation (e.g. mysite_session)
# This "secret" must be a random string, at least 30 characters long, and kept secret for security
 
# The production section modified to support configuration automation at Slicehost
# The secret and password fields should be updated for any externally facing or production use
production:
  adapter: mysql
  database: eldorado_production
  username: root
  password:
  host: localhost
  session_key: eldorado_production
  secret: RSTRebtQxqDy4tgFooSw4Al3xHau4FErig
 
import:
  adapter: mysql
  database: punbb
  username: root
  password:
  host: localhost
  prefix: pun_