From a9dabb15f4272bacf033b49ebe149a80c41d749c Mon Sep 17 00:00:00 2001 From: Jerrica Bobadilla Date: Thu, 8 Oct 2020 12:05:06 -0700 Subject: [PATCH] add documentation resources --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 76087b2..26b1343 100644 --- a/README.md +++ b/README.md @@ -142,3 +142,19 @@ To build your app, we're going to be building a virtual environment. In order to - You can add data by logging in to `/admin` with the heroku superuser you created --- + +## Resources + +Django is a fairly opinionated frameworks meaning there are right ways to do things. If you plan on making many changes to this template, I would recommend looking at their documentation: + +- [Django Documentation](https://docs.djangoproject.com/en/3.1/) + - Particular pages you may want to look at: + - [Making Queries (Django's built in ORM)](https://docs.djangoproject.com/en/3.1/topics/db/queries/#) + - [Models](https://docs.djangoproject.com/en/3.1/topics/db/models/) + - [Migrations](https://docs.djangoproject.com/en/3.1/topics/migrations/) + - [URLs Config](https://docs.djangoproject.com/en/3.1/topics/http/urls/) + - [Templates](https://docs.djangoproject.com/en/3.1/topics/templates/) + - [The Django Templating Language](https://docs.djangoproject.com/en/3.1/ref/templates/language/) + - [Writing Views](https://docs.djangoproject.com/en/3.1/topics/http/views/) + - [Class Based Views](https://docs.djangoproject.com/en/3.1/topics/class-based-views/) +