hizashi-utils

Utils for managing Django Hizashi environment


Keywords
django, hizashi, utils, helpers
License
Other
Install
pip install hizashi-utils==0.4.1

Documentation

Django Hizashi project utilities

A set of command line helper utilities for managing Django Hizashi project environment.

About the project

Django Hizashi is a Django project environment based on iterating personal best practices. Management commands recreate familiar project directory structure from prepared project and application templates.

Utilities are context aware, so as long as you are in a subdirectory of the main Django Hizashi project folder, script utilities will work on best effort basis.

Quick start

  • create and initialize a new Python virtual environment
  • install hizashi-utils: pip install hizashi-utils
  • initialize project: hizashi.py initproject my_new_project
  • change directory to that project: cd my_new_project
  • initialize an application: hizashi.py initapp my_new_app

Project level utilities

initproject

To initialize a new project execute:

hizashi.py initproject my_new_project_name

Optional parameters:

makedocs

To build Sphinx docs execute:

hizashi.py makedocs

Optional parameters:

  • type - documentation type, defaults to html, mimics sphinx Makefile
  • publish - switch to activate the Publish server, a documentation HTTP server
  • host - Publish server host, defaults to '127.0.0.1'
  • port - Publish server port, defaults to '54299'

devserver

Starts Django development server, using developer specific settings module or fallbacks to the default development settings module core.settings.dev.

To start the server execute:

hizashi.py devserver

Optional parameters:

  • settings - override automatically detected settings file

collectstatic

Runs collectstatic Django management comamnd, using developer specific settings module or fallbacks to the default development settings module core.settings.dev.

To start the server execute:

hizashi.py collectstatic

Optional parameters:

  • settings - override automatically detected settings file

Application level utilities

initapp

To initialize a new application execute:

hizashi.py initapp my_new_application_name

Optional parameters: