In this lesson, you’ll build out the routes for your projects
app and review what you’ve already seen on the topic. Earlier, you went to the main file inside your management app (urls.py
).
To that file, you added path('projects/', include('projects.urls'))
. Now, when someone types projects/
in the URL, they’ll be directed towards urls.py
inside the projects
app.