From 49d925054a3a08b6b567d70ff08d7fd3dcb20665 Mon Sep 17 00:00:00 2001 From: Aron Janarv Date: Fri, 22 Nov 2013 20:44:23 +0100 Subject: [PATCH] _manage.py support for startproject Description from https://docs.djangoproject.com/en/dev/ref/django-admin/ --- src/_manage.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/_manage.py b/src/_manage.py index 833e5b5..2f9b836 100644 --- a/src/_manage.py +++ b/src/_manage.py @@ -135,6 +135,7 @@ _managepy-sqlinitialdata(){} _managepy-sqlreset(){} _managepy-sqlsequencereset(){} _managepy-startapp(){} +_managepy-startproject(){} _managepy-syncdb() { _arguments -s : \ @@ -191,6 +192,7 @@ _managepy-commands() { 'sqlreset:Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given app name(s).' 'sqlsequencereset:Prints the SQL statements for resetting sequences for the given app name(s).' "startapp:Creates a Django app directory structure for the given app name in this project's directory." + "startproject:Creates a Django project directory structure for the given project name in the current directory or the given destination." "syncdb:Create the database tables for all apps in INSTALLED_APPS whose tables haven't already been created." 'test:Runs the test suite for the specified applications, or the entire site if no apps are specified.' 'testserver:Runs a development server with data from the given fixture(s).'