diff options
author | 2022-02-26 13:29:54 +0100 | |
---|---|---|
committer | 2022-02-26 13:32:45 +0100 | |
commit | 2e02f8672212b70f6be5349288b0d932e6d35b52 (patch) | |
tree | c0084b6feb7f52dacd46376e8a8ad779ce08c790 /pydis_site/README.md | |
parent | Add a readme to the Django project directory (diff) |
Move static & template folder description up
Diffstat (limited to 'pydis_site/README.md')
-rw-r--r-- | pydis_site/README.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/pydis_site/README.md b/pydis_site/README.md index 456f7e9e..77cfbeab 100644 --- a/pydis_site/README.md +++ b/pydis_site/README.md @@ -23,6 +23,11 @@ for all logic powering our website. Let's go over the directories in detail: that we encounter an internal server error. + +Note that for both `static` and `templates`, we are not using the default Django +directory structure which puts these directories in a directory per app (in our +case, this would for example be ``pydis_site/apps/content/static/``). + We also have a few files in here that are relevant or useful in large parts of the website: @@ -44,9 +49,5 @@ the website: our application in production. Unless you want to test an interaction between our application and those servers, you probably won't need to touch this. -Note that for both `static` and `templates`, we are not using the default Django -directory structure which puts these directories in a directory per app (in our -case, this would for example be ``pydis_site/apps/content/static/``). - [^1]: See [Django Glossary: project](https://docs.djangoproject.com/en/dev/glossary/#term-project) |