-
Notifications
You must be signed in to change notification settings - Fork 54
/
build.xml.dist
24 lines (15 loc) · 884 Bytes
/
build.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<project name="Gentelella" default="setup">
<!-- ============================================ -->
<!-- Target: setup -->
<!-- ============================================ -->
<target name="setup">
<property environment="env" />
<echo msg="Setting up a database schema" />
<exec command="php bin/console doctrine:database:create --if-not-exists"/>
<exec command="php bin/console doctrine:schema:create"/>
<echo msg="Installing assets" />
<exec command="bower install" passthru="true" />
<echo msg="Done ..." />
</target>
</project>