Metadata-Version: 2.1
Name: django-shorts
Version: 1.1
Summary: You spend way too much time typing 'python manage.py'
Home-page: https://github.com/mhadiahmed/django-shorts.git
Author: Mhadi Ahmed
Author-email: mhadiahmed63@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.8

Django shorts
================

You spend too much time typing ``python manage.py``.

Usage
-----

Django shorts installs a ``django`` binary that proxies
Django's ``manage.py`` and ``django-admin.py`` scripts.



    $ django <command or shortcut>

    $ cd any/project/subdirectory
    $ django <command or shortcut>

Requirements
------------

Some commands require additional packages

+ Django 


Shortcuts
---------



ALIASES = {
    # Django
    'c'  : 'collectstatic',
    'r'  : 'runserver',
    'sd' : 'syncdb',
    'sp' : 'startproject',
    'sa' : 'startapp',
    't'  : 'test',

    # Shell
    'd'  : 'dbshell',
    's'  : 'shell',

    # Auth
    'csu': 'createsuperuser',
    'cpw': 'changepassword',

    # database
    'm'  : 'migrate',
    'mkm' : 'makemigrations',

    # session
    'cs' : 'clearsessions',


Installation
------------



    $ pip install django-shorts

