laktek / extended-bort forked from fudgestudios/bort

This extends rails base app Bort by including annotate-models and make_resourceful plugins + replacing Prototype with jQuery + standard stylesheets

This URL has Read+Write access

extended-bort / config / database.yml
100644 59 lines (52 sloc) 0.96 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
development:
  # Sqlite Settings
  adapter: sqlite3
  database: db/development.sqlite3
  pool: 5
  timeout: 5000
 
  # Mysql Settings
  # adapter: mysql
  # encoding: utf8
  # database: bort_development
  # username: root
  # password:
  # pool: 5
  
test:
  # Sqlite Settings
  adapter: sqlite3
  database: db/test.sqlite3
  pool: 5
  timeout: 5000
 
  # Mysql Settings
  # adapter: mysql
  # encoding: utf8
  # database: bort_test
  # username: root
  # password:
  # pool: 5
  
staging:
  # Sqlite Settings
  adapter: sqlite3
  database: db/staging.sqlite3
  pool: 5
  timeout: 5000
 
  # Mysql Settings
  # adapter: mysql
  # encoding: utf8
  # database: bort_staging
  # username: root
  # password:
  # pool: 5
  
production:
  # Sqlite Settings
  adapter: sqlite3
  database: db/production.sqlite3
  pool: 5
  timeout: 5000
 
  # Mysql Settings
  # adapter: mysql
  # encoding: utf8
  # database: bort_production
  # username: root
  # password:
  # pool: 5