An open API service indexing awesome lists of open source software.

https://github.com/stevearc/pyramid-cookiecutter-webpack

A Cookiecutter (project template) for creating a Pyramid project using webpack to bundle assets
https://github.com/stevearc/pyramid-cookiecutter-webpack

Last synced: about 20 hours ago
JSON representation

A Cookiecutter (project template) for creating a Pyramid project using webpack to bundle assets

Awesome Lists containing this project

README

          

pyramid-cookiecutter-webpack
============================
A Cookiecutter (project template) for creating a Pyramid project using webpack to bundle assets

Requirements
------------
* `cookiecutter `_

Usage
-----
Generate a Pyramid project::

$ cookiecutter gh:stevearc/pyramid-cookiecutter-webpack

Install and set up necessary packages::

$ cd
$ 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