wagtailstartproject

This app contains a custom project template and a custom wagtail start command to allow creating customized wagtail setups


Keywords
wagtail, startproject
License
MIT
Install
pip install wagtailstartproject==0.1

Documentation

Wagtail startproject

This app contains a custom project template and a custom wagtail start command to allow creating customized wagtail setups.

Install

To install the package simply run:

pip install wagtail-startproject

Then, to start your project using the project templates structure, navigate to the project root and enter the following command:

wagtail_startproject <project-name>

Release

To create and upload a release to PyPI:

pip install -r requirements-dev.txt
bumpversion release --commit --tag
rm -rf dist
python setup.py sdist bdist_wheel
twine upload dist/*