Skip to content

Commit 6fb2cc7

Browse files
authored
Update README.md
1 parent 85214a7 commit 6fb2cc7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $ git clone https://github.com/shreys7/django-todo.git
99
```
1010
You will need django to be installed in you computer to run this app. Head over to https://www.djangoproject.com/download/ for the download guide
1111

12-
Once you have downloaded django, go to todoApp directory and run the following command
12+
Once you have downloaded django, go to the cloned repo directory and run the following command
1313

1414
```bash
1515
$ python manage.py makemigrations
@@ -22,7 +22,12 @@ Now, to apply this migrations run the following command
2222
$ python manage.py migrate
2323
```
2424

25-
That was pretty simple, right? Now let's make the App live. We just need to start the server now and then we will start using our simple todo App. Start the server by following command
25+
One last step and then our todo App will be live. We need to create an admin user to run this App. On the terminal, type the following command and provide username, password and email for the admin user
26+
```bash
27+
$ python manage.py createsuperuser
28+
```
29+
30+
That was pretty simple, right? Now let's make the App live. We just need to start the server now and then we can start using our simple todo App. Start the server by following command
2631

2732
```bash
2833
$ python manage.py runserver

0 commit comments

Comments
 (0)