blob: 48e2764af6f5e706a29ab7b13bfdb582d3aea4a9 (
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"] == "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
|