diff --git a/build.default.properties b/build.default.properties index fac0ee8..e173565 100644 --- a/build.default.properties +++ b/build.default.properties @@ -26,6 +26,28 @@ drupal.db.url = sqlite:${project.drupal.dir}/database.sqlite # Ex: drupal.make.rewritebase = /drupal7 # drupal.make.rewritebase = +# How to deploy the site during 'phing site-install'. +# Options include: drush, aegir +deploy.type = drush + +# Options for a Drush-based deployment +# The database url to use for site installs +deploy.drush.db = sqlite:${project.drupal.dir}/database.sqlite + +# Options for an Aegir-based deployment +# The site name to use for the site (also, the domain name it'll be accessible under) +deploy.aegir.site = phing-site.localhost +# The machine name to use for the platform +deploy.aegir.platform = phing_platform +# The machine name to use for the server +deploy.aegir.server = localhost +# The drush command to use for Aegir. This is useful if your Aegir install uses +# a different Drush command than the default, for example, you run Aegir 1.x +# with uses Drush 4, but you want everything else to use Drush 6. +deploy.aegir.drush = drush +# This would change the default drush +# drush.bin = drush6 + # The directory containing the modules and themes for the project relative to the drupal root directory. If using Drush Make this is also where modules, themes, libraries etc. will be downloaded to. project.code.dir = sites/all # A common prefix for modules developed for the site e.g. your_prefix_your_module diff --git a/build.xml b/build.xml index ac5d251..99d6e3c 100644 --- a/build.xml +++ b/build.xml @@ -556,7 +556,7 @@ specific prefix. --> + depends="init, clean, deploy"> @@ -565,7 +565,7 @@ specific prefix. --> - + @@ -582,7 +582,7 @@ coder-review-d7. No need to run `init` here. This target should only be called from parent `coder-review-*` targets. --> + depends="setup-phing-drush, deploy"> @@ -619,10 +619,10 @@ No need to run `init` here. This target should only be called from parent - no-empty - checkstyle - minor - ${coder.review.type} +