In this lesson, you’re going to take another look at your project to see a few of the important files that you’re going to work with a lot:
-
manage.py
: You won’t go inside this file, but it’s kind of the command center of your project, so a lot of commands that you run are going to sit inside this file. -
myproject
: Inside of the management app, which is the one you start with when you first create your project, there are two files that you’re going to work with.urls.py
is used to route forward to your other app.settings.py
has project-wide settings.
Inside example_app
, the projects app you’ll be creating, you’ll have a few files. The most important ones are urls.py
, views.py
, and models.py
.
reblark on Oct. 24, 2019
Well, that’s interesting. It looks like you are adding video segments to this tutorial as we speak. I went through the table of contents and found 3 new files that I had never seen. For instance, the Django Apps video is really welcome. It’s one of those things that you have to figure out for yourself, but an explanation like you have presented is very useful and welcome. I am impressed.