aboutsummaryrefslogtreecommitdiffstats
path: root/config/database.yml.ccontrol
blob: 1936af0e1d0bf400a88e0efd5c55de6c8ccba60a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
development:
  adapter: jdbcpostgresql
  database: chouette2_dev
  encoding: utf8
  username: chouette
  password: chouette

test:
  adapter: jdbcpostgresql
  database: <%= (ENV["GIT_BRANCH"].nil? || ENV["GIT_BRANCH"] == "master") ? "chouette_test" : "chouette_" + ENV["GIT_BRANCH"] + "_test" %>
  encoding: utf8
  username: chouette
  password: chouette

# When war is created by jenkins
production:
  adapter: jdbcpostgresql
  database: chouette2
  encoding: utf8
  host: localhost
  username: chouette
  password: chouette