summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorBruno Alla <alla.brunoo@gmail.com>2025-04-27 12:01:24 +0200
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-04-27 14:41:27 +0100
commitbc21bc4282d854053c1218e8fb3ea39387ccca72 (patch)
tree548330c1779ad6049aa8389c6456b628c657e276 /docs/intro/tutorial01.txt
parent3babda775d822232c8438dba8206cd2f3e2dfacc (diff)
Fixed #18296 -- Created missing custom target directory for startproject and startapp.
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt15
1 files changed, 5 insertions, 10 deletions
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::