Going through some tutorials as a beginner in Django, I noticed a tutor linked the various apps in the urls.py and another tutor did it with the app.py using the config function
just looking for clarification before I try anything
Going through some tutorials as a beginner in Django, I noticed a tutor linked the various apps in the urls.py and another tutor did it with the app.py using the config function
just looking for clarification before I try anything
Copyright © 2021 Jogjafile Inc.
The django
urls.pyfile contains the URL routing for each app. No other work should be done here.example
common/urls.py:And change app name in
common/apps.pyfile, andsignal.pyfile config etc.more