Sha256: 8473f111cf58cb1f7a8e5683c32a4daf5664f25236dc1eada2a3956e4e96808d
Contents?: true
Size: 747 Bytes
Versions: 3
Compression:
Stored size: 747 Bytes
Contents
- name: clone the FE app remote_user: "{{ deployer_user.name }}" git: dest={{ fe_app_path }} repo={{ fe_app_repo }} version={{ fe_app_branch }} accept_hostkey=true force=yes tags: [fe_deploy] - name: NPM install remote_user: "{{ deployer_user.name }}" command: bash -lc command: chdir={{ fe_app_path }} bash -lc 'test -e package.json && npm install' tags: [fe_deploy] - name: Bower install remote_user: "{{ deployer_user.name }}" command: bash -lc command: chdir={{ fe_app_path }} bash -lc 'test -e bower.json && bower install' tags: [fe_deploy] - name: Build FE remote_user: "{{ deployer_user.name }}" command: chdir={{ fe_app_path }} bash -lc 'gulp build' tags: [fe_deploy]
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
taperole-1.2.8 | roles/frontend_deploy/tasks/main.yml |
taperole-1.2.7 | roles/frontend_deploy/tasks/main.yml |
taperole-1.2.6 | roles/frontend_deploy/tasks/main.yml |