Created
May 31, 2017 14:29
-
-
Save devigned/1c9a3c25e2f669d2dade3d9887da34a2 to your computer and use it in GitHub Desktop.
Habitat init hook for Rails todo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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