I'm using cloud9, and I have a project in Django where I have to perform the view with Polymer. I follow the bower installation manual: link
I install bower correctly, and I install polymer (google maps) with bower correctly (I see that the folder structure is generated, following this example ( link ).
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<link rel="import" href="bower_components/google-map/google-map.html">
But you can not find the url: link Failed to load resource: the server respond with a status of 404 (Not Found)
The path where the compomenents are is: / home / ubuntu / workspace, this route being the route of the project.
How do I indicate to the template that it has to load bower components from that route?
Thank you very much.