Skip to content

Instantly share code, notes, and snippets.

@devigned
Created May 31, 2017 14:29
Show Gist options
  • Save devigned/1c9a3c25e2f669d2dade3d9887da34a2 to your computer and use it in GitHub Desktop.
Save devigned/1c9a3c25e2f669d2dade3d9887da34a2 to your computer and use it in GitHub Desktop.
Habitat init hook for Rails todo
#!/bin/sh
rm -rf {{pkg.svc_static_path}}/*
cp -R {{pkg.path}}/static/* {{pkg.svc_static_path}}
rm -rf "{{pkg.svc_static_path}}/config/secrets.yml" "{{pkg.svc_static_path}}/config/mongoid.yml"
ln -sf {{pkg.svc_config_path}}/secrets.yml {{pkg.svc_static_path}}/config/secrets.yml
ln -sf {{pkg.svc_config_path}}/mongoid.yml {{pkg.svc_static_path}}/config/mongoid.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment