A set of command line helper utilities for managing Django Hizashi project environment.
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.
- 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
To initialize a new project execute:
hizashi.py initproject my_new_project_name
Optional parameters:
- template - path or url for a Django project template, defaults to https://github.com/dodobas/hizashi-project-template/archive/master.zip
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'
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
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
To initialize a new application execute:
hizashi.py initapp my_new_application_name
Optional parameters:
- template - path or url for a Django application template, defaults to https://github.com/dodobas/hizashi-application-template/archive/master.zip