Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jgorset/django-shortcuts
You spend too much time typing "python manage.py"
https://github.com/jgorset/django-shortcuts
Last synced: 5 days ago
JSON representation
You spend too much time typing "python manage.py"
- Host: GitHub
- URL: https://github.com/jgorset/django-shortcuts
- Owner: jgorset
- License: mit
- Created: 2011-04-29T09:33:01.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2018-07-10T13:37:25.000Z (over 6 years ago)
- Last Synced: 2024-10-31T22:32:31.212Z (13 days ago)
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 62
- Watchers: 6
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Django shortcuts
================You spend too much time typing ``python manage.py``.
Usage
-----Django shortcuts installs a ``django`` binary that proxies
Django's ``manage.py`` and ``django-admin.py`` scripts.::
$ django
$ cd any/project/subdirectory
$ djangoRequirements
------------Some commands require additional packages
+ South
+ Haystack
+ Django Command ExtensionsShortcuts
---------::
# Django
'c' : 'collectstatic',
'r' : 'runserver',
'sd' : 'syncdb',
'sp' : 'startproject',
'sa' : 'startapp',
't' : 'test',# Shell
'd' : 'dbshell',
's' : 'shell',# Auth
'csu': 'createsuperuser',
'cpw': 'changepassword',# South
'm' : 'migrate',
'mm' : 'makemigrations',
'sm' : 'schemamigration',
'dm' : 'datamigration',# Haystack
'ix' : 'update_index',
'rix': 'rebuild_index',# Django Extensions
'sk' : 'generate_secret_key',
'rdb': 'reset_db',
'rp' : 'runserver_plus',
'shp': 'shell_plus',
'url': 'show_urls',
'gm' : 'graph_models',
'rs' : 'runscript'Installation
------------::
$ pip install django-shortcuts