From bc21bc4282d854053c1218e8fb3ea39387ccca72 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Sun, 27 Apr 2025 12:01:24 +0200 Subject: Fixed #18296 -- Created missing custom target directory for startproject and startapp. --- docs/intro/tutorial01.txt | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'docs/intro/tutorial01.txt') diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index 0a766f9099..1318c5aa08 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -45,21 +45,16 @@ including database configuration, Django-specific options and application-specific settings. From the command line, ``cd`` into a directory where you'd like to store your -code and create a new directory named ``djangotutorial``. (This directory name -doesn't matter to Django; you can rename it to anything you like.) - -.. console:: - - $ mkdir djangotutorial - -Then, run the following command to bootstrap a new Django project: +code and run the following command to bootstrap a new Django project: .. console:: $ django-admin startproject mysite djangotutorial -This will create a project called ``mysite`` inside the ``djangotutorial`` -directory. If it didn't work, see :ref:`troubleshooting-django-admin`. +This will create a directory ``djangotutorial`` with a project called +``mysite`` inside. The directory name doesn't matter to Django; you can rename +it to anything you like. If it didn't work, see +:ref:`troubleshooting-django-admin`. .. note:: -- cgit v1.3