You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
11
11
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
13
13
14
14
```bash
15
15
$ python manage.py makemigrations
@@ -22,7 +22,12 @@ Now, to apply this migrations run the following command
22
22
$ python manage.py migrate
23
23
```
24
24
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
0 commit comments