Getting StartedΒΆ

Install the package into your python environment:

$ /path/to/pyvenv/bin/pip install djed.static

Include it in your Pyramid application:

config.include('djed.static')

Add a bower_components directory:

config.add_bower_components('myapp:static/bower_components')

Include static resources on your HTML page. You can do this in templates or somewhere else in your code:

request.include('bootstrap')

All additional required resources are automatically resolved and are also included on your HTML page.