GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: yet another gallery application done in Rails
Clone URL: git://github.com/kingmt/gallery.git
nearly forgot to update database.yml.template for postgres settings
kingmt (author)
Fri Jul 25 14:31:35 -0700 2008
commit  f988de188edd686c182f53931e6b3902c0e24dbf
tree    50ce1c57e2aff3188ed798aeb1916abf0c854d73
parent  b31bcdf205274c915313c455c7a61e9deab82fc8
...
8
9
10
 
 
 
 
 
 
 
11
12
 
13
14
15
16
17
18
19
 
20
21
22
23
 
24
...
8
9
10
11
12
13
14
15
16
17
18
 
19
20
21
22
23
24
25
 
26
27
28
29
 
30
31
0
@@ -8,17 +8,24 @@ mysql_defaults: &mysql_defaults
0
   # OS X(?) socket
0
   # socket: /tmp/mysql.sock
0
 
0
+postgres_defaults: &postgres_defaults
0
+ adapter: postgresql
0
+ username: postgres
0
+ password:
0
+ socket: /var/run/postgresql
0
+ host: localhost
0
+
0
 development:
0
- <<: *mysql_defaults
0
+ <<: *postgres_defaults
0
   database: gallery
0
 
0
 # Warning: The database defined as "test" will be erased and
0
 # re-generated from your development database when you run "rake".
0
 # Do not set this db to the same as development or production.
0
 test:
0
- <<: *mysql_defaults
0
+ <<: *postgres_defaults
0
   database: gallery_test
0
 
0
 production:
0
- <<: *mysql_defaults
0
+ <<: *postgres_defaults
0
   database: gallery

Comments

    No one has commented yet.