Metadata-Version: 1.1
Name: dj-cmd
Version: 0.4
Summary: `dj cmd` is a Django shortcut command.
Home-page: https://github.com/nigma/dj-cmd
Author: Filip Wasilewski
Author-email: en@ig.ma
License: BSD
Download-URL: https://github.com/nigma/dj-cmd/zipball/master
Description: ``dj cmd``, for short
        =====================
        
        .. image::
            https://api.travis-ci.org/nigma/dj-cmd.png?branch=master
            :alt: Build Status
            :target: https://travis-ci.org/nigma/dj-cmd
        
        Tired of typing ``python manage.py runserver``? Just
        
        ::
        
            pip install dj-cmd
        
        and then
        
        ::
        
            dj run
        
        from any project's directory.
        
        Features
        --------
        
        - saves typing
        - automatically locates ``manage.py`` script in the current or parent directories
        - works great with virtualenv, even on Windows
        
        Commands
        --------
        
        List of command aliases is a matter of personal taste, so go ahead and adjust
        the config or fork the project and add yours to the `aliases.py`_ file.
        
        Currently supported commands:
        
        - ``run`` - runserver
        - any valid ``manage.py`` command
        
        Config file
        +++++++++++
        
        Command aliases can also be specified using a config file.
        
        If a ``.djcmd`` or ``.dj.ini`` config file is present in the user's home directory
        or in the ``manage.py`` base directory, it is used to populate the list
        of command aliases.
        
        `Example <https://github.com/nigma/dj-cmd/blob/master/.djcmd>`_ of the ``.djcmd`` config file::
        
            [commands]
            cs=collectstatic --noinput
            r=runserver
            sh=shell
        
            rp=runserver_plus
            shp=shell_plus
        
            m=migrate
            sma=schemamigration --auto
        
        Put it in your home or in the ``manage.py`` base directory of your project.
        
        License
        -------
        
        ``dj-cmd`` is released under the BSD license.
        
        
        Similar projects
        ----------------
        
        This is not the first project of this kind. Other may suits you better,
        this works well for me.
        
        - http://pypi.python.org/pypi/django-shortcuts
        - http://pypi.python.org/pypi/Django-dj
        
        Other Resources
        ---------------
        
        - GitHub repository - https://github.com/nigma/dj-cmd
        - PyPi Package site - http://pypi.python.org/pypi/dj-cmd
        - Distutils `dev <https://github.com/nigma/django-herokuify/tarball/master#egg=django-herokuify-dev>`_ version link.
        
        .. _aliases.py: https://github.com/nigma/dj-cmd/blob/master/src/aliases.py
        
        
        Commercial Support
        ------------------
        
        This app, and many others, have been created at `en.ig.ma <http://en.ig.ma/>`_
        web & mobile development.
        
        Do you need help building your web app or api backend? Just drop us a note
        at `en@ig.ma <mailto:en@ig.ma>`_ and we will guide you from project idea
        to live website.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
