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
10
+
11
+
Once you have downloaded django, go to todoApp directory and run the following commands
12
+
13
+
```bash
14
+
$ python manage.py makemigrations
15
+
```
16
+
17
+
This will create all the migrations file (database migrations) required to run this App.
18
+
19
+
Now, to apply this migrations run the following command
20
+
```bash
21
+
$ python manage.py migrate
22
+
```
23
+
24
+
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
+
26
+
```bash
27
+
$ python manage.py runserver
28
+
```
29
+
30
+
You can see the line on which the server is hosted. Once the server is hosted, head over to http://127.0.0.1:8000/todos for the App.
0 commit comments