config/config.yaml in docman-0.0.2 vs config/config.yaml in docman-0.0.3

- old
+ new

@@ -1,32 +1,55 @@ +--- deploy_targets: local: - build_types: - root: dir - drupal: drupal - repo: repo - dir: dir + handler: LocalDeployer + builders: + root: + handler: :common + type: dir + drupal: + handler: :drupal + type: drupal + repo: + handler: :git + type: direct + dir: + handler: :common + type: dir acquia: - build_types: - root: repo - drupal: drupal - repo: subrepo - dir: dir + handler: GitDeployer + deploy_action: git_push + builders: + root: + handler: :git + type: direct + after_build_actions: + - git_commit + drupal: + handler: :drupal + type: drupal + after_build_actions: + - git_commit + repo: + handler: :git + type: strip + after_build_actions: + - git_commit + dir: + handler: :common + type: dir + after_build_actions: + - git_commit environments: local: - deploy_target: - local + deploy_target: local + state: development dev: - deploy_target: - acquia + deploy_target: acquia + state: development test: - deploy_target: - acquia + deploy_target: acquia + state: staging prod: - deploy_target: - acquia - -states: - - development - - staging - - stable + deploy_target: acquia + state: stable