bigfleet (owner)

Revisions

gist: 122506 Download_button fork
public
Description:
DB per branch
Public Clone URL: git://gist.github.com/122506.git
Embed All Files: show embed
Text only #
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
<%= branch = `git symbolic-ref HEAD`.gsub('refs/heads/', '').chomp.gsub('/', '_') %>
 
login: &login
  adapter: mysql
  username: root
  password: xxxxxxxxxxxxxx
  host: localhost
  socket: /opt/local/var/run/mysql5/mysqld.sock
  
development:
  <<: *login
  database: <%= "protopipe_#{branch}_development" %>
 
# 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:
  <<: *login
  database: <%= "protopipe_#{branch}_test" %>
 
cucumber:
  <<: *login
  database: <%= "protopipe_#{branch}_cucumber" %>
 
production:
  <<: *login
  database: <%= "protopipe_#{branch}_production" %>