- Install the bower component:
> bower install --save appirio-tech-copilot
- Include the
main.jsfile in your app. - Require the
ap-copilot-flowmodule in the parent app. - Refer to
example/scripts/routes.coffeein this repo for setting up routing in your app.
http://docs.apcopilotservice.apiary.io/#reference/copilot-project-management/individual-calls
The bower component served by this repo only includes the dist folder, which is committed. Make sure to gulp build before adding your files.
alias gserve='nvm use; gulp clean; gulp serve'
alias gtest='nvm use; gulp test'
alias gtestserve='nvm use; gulp test-serve'
alias gbuild='nvm use; gulp clean; gulp preprocessors; gulp useref; gulp copy-files; gulp remove-code'
alias ge2e='gbuild; gulp test; gulp e2e;'