diff options
author | 2022-02-26 15:12:27 +0100 | |
---|---|---|
committer | 2022-02-26 15:12:27 +0100 | |
commit | 143e0ad3bbcb3d2695dfb398db3846b87a9581d8 (patch) | |
tree | 3367bcbce8c608c3ae2aec12a93ed6d28bd137a7 /pydis_site/README.md | |
parent | Remove newlines added by an 🥥 INSANE PERSON 🥥 (diff) |
Elaborate on purpose of the urls module
Co-authored-by: Leon Sandøy <[email protected]>
Diffstat (limited to 'pydis_site/README.md')
-rw-r--r-- | pydis_site/README.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pydis_site/README.md b/pydis_site/README.md index cc0ec2a8..b0b6d122 100644 --- a/pydis_site/README.md +++ b/pydis_site/README.md @@ -44,8 +44,7 @@ the website: parses configuration out of your environment variables, so you shouldn't need to edit it directly unless you want to add new settings. -- [`urls.py`](./urls.py), which configures our Django URL routing by installing - our apps into the routing tree. +- [`urls.py`](./urls.py), the URL configuration for the project itself. Here we can forward certain URL paths to our different apps, which have their own `urls.py` files to configure where their subpaths will lead. These files determine _which URLs will lead to which Django views_. - [`wsgi.py`](./wsgi.py), which serves as an adapter for [`gunicorn`](https://github.com/benoitc/gunicorn), |