aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/build.xml
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-02-02 07:48:13 +0100
committerJeremy <jeremy.benoist@gmail.com>2015-02-02 07:48:16 +0100
commitc5772d118fec5d5b0504c08266abcfaa21228119 (patch)
treeae0d211580922d0f274a570c2df1008be4132d6a /app/build.xml
parent2e45e7bebcdf4e3d990f965bf04a9051343168a4 (diff)
downloadwallabag-c5772d118fec5d5b0504c08266abcfaa21228119.tar.gz
wallabag-c5772d118fec5d5b0504c08266abcfaa21228119.tar.zst
wallabag-c5772d118fec5d5b0504c08266abcfaa21228119.zip
Installation should be launch manually
Also upadte readme for v2 and define a test database (for the future)
Diffstat (limited to 'app/build.xml')
-rw-r--r--app/build.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/build.xml b/app/build.xml
index b3f4c13a..5300af04 100644
--- a/app/build.xml
+++ b/app/build.xml
@@ -14,6 +14,17 @@
14 </exec> 14 </exec>
15 <exec executable="php"> 15 <exec executable="php">
16 <arg value="${basedir}/../app/console"/> 16 <arg value="${basedir}/../app/console"/>
17 <arg value="doctrine:database:drop"/>
18 <arg value="--force"/>
19 <arg value="--env=test"/>
20 </exec>
21 <exec executable="php">
22 <arg value="${basedir}/../app/console"/>
23 <arg value="doctrine:database:create"/>
24 <arg value="--env=test"/>
25 </exec>
26 <exec executable="php">
27 <arg value="${basedir}/../app/console"/>
17 <arg value="cache:clear"/> 28 <arg value="cache:clear"/>
18 <arg value="--env=test"/> 29 <arg value="--env=test"/>
19 </exec> 30 </exec>