Skip to content
This repository has been archived by the owner on Feb 26, 2018. It is now read-only.

v0.2.0 - Pre/Post/Override commands!

Latest
Compare
Choose a tag to compare
@flipace flipace released this 18 Apr 18:30
· 6 commits to master since this release

This release brings with it the possibility to specify pre/override/post commands for your hantera configuration.

  • improved output is now more concise and better formatted
  • added it's now possible to specify commands for setup, update and install-dependencies which will run pre/post or override the default behavior.

You can utilize the pre, override, and post keys for your steps.
CAUTION when you use the override step, the default behavior of hantera will be skipped!

  setup:
    post:
      - ./_scripts/copy-env.sh >hantera.log
      - ./_scripts/run-migrations.sh >hantera.log
      - ./_scripts/build-all.sh >hantera.log
  dependencies:
      # nothing here
  update:
    post:
      - ./_scripts/copy-env.sh >hantera.log
      - ./_scripts/run-migrations.sh >hantera.log
      - ./_scripts/build-all.sh >hantera.log
  • fixed hantera develop update will now also install/update the dependencies or your dependencies