Pyramid extension for managing assets with Webpack.
Project description
Pyramid Webpack
- Build:
- Documentation:
- Downloads:
- Source:
A Pyramid extension for managing assets with Webpack.
Quick Start
Install cookiecutter
Create a new project:
$ cookiecutter gh:stevearc/pyramid-cookiecutter-webpack
Install and set up necessary packages:
$ cd <your project> $ virtualenv env $ source env/bin/activate $ pip install --upgrade pip $ pip install -e . $ npm install
Start the webpack build:
$ npm run watch
In a separate terminal, start the Pyramid server:
$ pserve --reload development.ini
Changelog
0.1.3 - 2017/9/5
Fix loading stats file in python 3.5 PR #6
0.1.2 - 2017/9/3
Fix #4: Issue with Jinja2 rendering
Created a cookiecutter to make it easier to get started: https://github.com/stevearc/pyramid-cookiecutter-webpack
0.1.1 - 2016/10/27
Add cache_max_age config option
0.1.0 - 2016/10/23
Initial release