-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.properties
46 lines (36 loc) · 1.45 KB
/
build.properties
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
project.name = qaReview
project.version = 0.1.0
project.stability = alpha
commons.env = production
# The commons based directory will be used to calculate several build related
# paths and directories. Therefore we will keep it separated and independent for
# each component in the component's basedir.
commons.basedir = ${basedir}
# Base directories with PHP source and test files
commons.srcdir.php = ${basedir}/src/main
commons.testdir.php = ${basedir}/test
commons.srcdir.js = ${basedir}/src/htdocs/scripts
codesniffer.standard = Arbit
codesniffer.standard.package.name = PHP_CodeSniffer_Standards_Arbit
codesniffer.standard.package.channel = pear.arbitracker.org
codesniffer.fail.on.violation = 0
# Use dbdeploy for database migrations.
dbdeploy.delta.dir = ${basedir}/src/schema
# Disabled temporaly -- currently causes weird errors
jslint.enabled = 0
# Default dataase connection strings. Configure a custom database connection in
# a build.properties.local file following the same scheme.
db.hostname = localhost
db.userid = root
db.password =
db.name = qareview_testing
# Database credentials for the production environment
db.production.hostname = localhost
db.production.userid = root
db.production.password =
db.production.name = qareview
# Database credentials for the dev environment
db.development.hostname = localhost
db.development.userid = root
db.development.password =
db.development.name = qareview_dev