Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.1 KB

README.rst

File metadata and controls

39 lines (27 loc) · 1.1 KB

Pyramid Webpack

Build:build coverage
Documentation:http://pyramid-webpack.readthedocs.io/
Downloads:http://pypi.python.org/pypi/pyramid_webpack
Source:https://github.com/stevearc/pyramid_webpack

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