public
Description: Simple blogging engine written in Ruby on Rails
Homepage: http://simplelog.net
Clone URL: git://github.com/rbazinet/simplelog.git
simplelog / config / database.yml
100644 24 lines (22 sloc) 0.666 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
development:
  adapter: mysql
  database: simplelog
  username: simplelog
  password: '!simplePASS'
  socket: /tmp/mysql.sock
 
# 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: mysql
  database: simplelog_test
  username: simplelog
  password: '!simplePASS'
  socket: /tmp/mysql.sock
 
# Unless you have a specific reason, leave this the same as
# development when installing SimpleLog, since this allows for
# easy DB setup using rake (see README for installation
# instructions)
production:
  development