Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevearc/pyramid_webpack
Pyramid extension for managing assets with Webpack
https://github.com/stevearc/pyramid_webpack
Last synced: 3 days ago
JSON representation
Pyramid extension for managing assets with Webpack
- Host: GitHub
- URL: https://github.com/stevearc/pyramid_webpack
- Owner: stevearc
- License: mit
- Created: 2016-10-22T03:16:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-06T04:38:46.000Z (about 7 years ago)
- Last Synced: 2024-09-17T01:17:08.514Z (about 2 months ago)
- Language: Python
- Size: 38.1 KB
- Stars: 10
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
README
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.. |build| image:: https://travis-ci.org/stevearc/pyramid_webpack.png?branch=master
.. _build: https://travis-ci.org/stevearc/pyramid_webpack
.. |coverage| image:: https://coveralls.io/repos/github/stevearc/pyramid_webpack/badge.svg?branch=master
.. _coverage: https://coveralls.io/github/stevearc/pyramid_webpack?branch=masterA 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
$ virtualenv env
$ source env/bin/activate
$ pip install --upgrade pip
$ pip install -e .
$ npm installStart the webpack build::
$ npm run watch
In a separate terminal, start the Pyramid server::
$ pserve --reload development.ini