diskimage-builder/doc/source/developer/index.rst
Hironori Shiina 30b3fc8dcc Fix a command in Developer Documentation
Fix a command for creating a new virtualenv.

Change-Id: Ia4981af390bf5218f22ea753db86a5edfbb602f2
2016-10-04 22:22:26 +09:00

37 lines
815 B
ReStructuredText

Developer Documentation
=======================
This documentation explains how to get started with creating your own
disk-image-builder elements as well as some high level concepts for element
creation.
Quickstart
----------
To get started developing with ``diskimage-builder``, install to a
``virtualenv``::
$ mkdir dib
$ cd dib
$ virtualenv env
$ source env/bin/activate
$ git clone https://git.openstack.org/openstack/diskimage-builder
$ cd diskimage-builder
$ pip install -e .
You can now simply use ``disk-image-create`` to start building images
and testing your changes. When you are done editing, use ``git
review`` to submit changes to the upstream gerrit.
.. toctree::
:maxdepth: 2
design
components
invocation
caches
developing_elements
dib_lint
stable_interfaces