dmp-cli

A command-line-interface for django-mako-plus.


Keywords
dmp-cli
License
MIT
Install
pip install dmp-cli==0.1.5

Documentation

dmp-cli

Updates

A command-line-interface for django-mako-plus.

Installation

pipenv install -d dmp-cli
# or
pip install dmp-cli

Usage

To create a new django-mako-plus project use

dmp new project [NAME]

Similarly, for new apps

dmp new app [NAME]

These are just shortcuts for

python3 -m django startproject --template=http://cdn.rawgit.com/doconix/django-mako-plus/master/project_template.zip [NAME]
# and
python3 manage.py startapp --template=http://cdn.rawgit.com/doconix/django-mako-plus/master/app_template.zip --extension=py,htm,html [NAME]

... but use the templates on your local filesystem from the currently installed version of DMP, rather than fetching the templates from github.