From c8a413b9635f408f46006c9063ebb6770202df00 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Tue, 9 Mar 2021 16:49:24 -0500 Subject: [PATCH] Update django.md --- django.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django.md b/django.md index af865da..5fdcc5e 100644 --- a/django.md +++ b/django.md @@ -21,7 +21,7 @@ Now let's install Django. This will allow us to create/run django apps: python -m pip install Django ``` -Let's create a new django project. Go to where on your computer you want your app to be stored and run: +Let's create a new django project. Go to where on your computer you want your app to be stored and run (`django_rest_api` can be whatever we want the project to be called`): ``` django-admin startproject django_rest_api