All Projects → codingforentrepreneurs → Try Django 2.2

codingforentrepreneurs / Try Django 2.2

Licence: mit
Try Django 2.2 is step-by-step to build a modern, fully open-source, Blog web application using Python, Django, Bootstrap, Javascript, and more.

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects
python36
32 projects

Projects that are alternatives of or similar to Try Django 2.2

Docker Jenkins Django Tutorial
實戰 Docker + Jenkins + Django + Postgres 📝
Stars: ✭ 129 (-61.83%)
Mutual labels:  django, tutorial
Django Auth Tutorial
Source code for Django authentication tutorial.
Stars: ✭ 160 (-52.66%)
Mutual labels:  django, tutorial
Django Intro Zh
Django 官方文档的 intro 部分的中文翻译
Stars: ✭ 141 (-58.28%)
Mutual labels:  django, tutorial
Circleci Demo Python Django
Example Django application running on CircleCI
Stars: ✭ 100 (-70.41%)
Mutual labels:  django, tutorial
Tweetme 2
Build a twitter-like app in Django, Bootstrap, Javascript, & React.js. Step-by-Step.
Stars: ✭ 247 (-26.92%)
Mutual labels:  django, tutorial
Django Shop Tutorial
Use Django To Create A Simple Shopping Site Tutorial
Stars: ✭ 109 (-67.75%)
Mutual labels:  django, tutorial
Faq
Useful Django-related information collected by `@pydjango` chat users.
Stars: ✭ 152 (-55.03%)
Mutual labels:  django, tutorial
Django Auth Tutorial Example
Django Authentication Video Tutorial
Stars: ✭ 60 (-82.25%)
Mutual labels:  django, tutorial
Reactify Django
Integrate React & Django
Stars: ✭ 205 (-39.35%)
Mutual labels:  django, tutorial
Justchat
A chat application built with Django channels.
Stars: ✭ 183 (-45.86%)
Mutual labels:  django, tutorial
Dependent Dropdown Example
Code example used in the post "How to Implement Dependent/Chained Dropdown List with Django"
Stars: ✭ 84 (-75.15%)
Mutual labels:  django, tutorial
Winerama Recommender Tutorial
A wine recommender system tutorial using Python technologies such as Django, Pandas, or Scikit-learn, and others such as Bootstrap.
Stars: ✭ 324 (-4.14%)
Mutual labels:  django, tutorial
Django Crash Starter
The Cookiecutter template for the Django Crash Course tutorial by Daniel and Audrey Feldroy.
Stars: ✭ 80 (-76.33%)
Mutual labels:  django, tutorial
Simple Signup
Code samples used in the blog post "How to Create User Sign Up View"
Stars: ✭ 128 (-62.13%)
Mutual labels:  django, tutorial
Docker Elk Tutorial
docker-elk-tutorial + django + logging
Stars: ✭ 69 (-79.59%)
Mutual labels:  django, tutorial
Kubernetes Django
Scalable and resilient Django with Kubernetes.
Stars: ✭ 145 (-57.1%)
Mutual labels:  django, tutorial
Docker Tutorial
Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL 📝
Stars: ✭ 906 (+168.05%)
Mutual labels:  django, tutorial
Django Celery Tutorial
Django Celery Tutorial
Stars: ✭ 48 (-85.8%)
Mutual labels:  django, tutorial
Rest Api Basics
This is a basic guide on how to build a REST API with Django & Python. For much deeper depth, check out our new course on REST API: (https://kirr.co/90kxtx)
Stars: ✭ 171 (-49.41%)
Mutual labels:  django, tutorial
Try Django 19
Try Django 1.9 is an introduction to Django version 1.9 by creating a simple, yet robust, Django blog. This series covers a variety of Django basics as well as Django 1.9 specific material. Created by Team CFE @ http://joincfe.com.
Stars: ✭ 279 (-17.46%)
Mutual labels:  django, tutorial

Try Django 2.2 tutorial

Getting Started

Requirements

  • Python 3.6 & up
  • Virtual Environment (pipenv or virtualenv)

Recommended Prerequisites

1. Setup your System

2. Create Virtual Environment & Install Django

cd /path/to/dev/folder
mkdir try_django
cd try_django
pipenv --python 3.6 install django==2.2
pipenv shell

Don't have pipenv? Check out this guide

3. Create Django Project

cd /path/to/dev/folder
mkdir src
cd src
django-admin startproject try_django .

4. Setup Project in Sublime Text

I've used Sublime Text for a long time. This is optional but recommended as you work through the videos. Download it on https://www.sublimetext.com/

Reference & Guides

Code by Lesson

1 - 4 no reference code

5 - Define a View

6 - A First URL Mapping

7 - Multiple Views

8 - path vs re_path vs url

9 - Your First Template

10 - Loading a HTML Template

11 - Add Bootstrap

12 - Render Context in Templates

13 - Stay DRY with Templates

14 - Rendering Any Kind of Template

15 - Template Context Processors

16 - Built In Template Tags

17 - Your First App

18 - Save to the Database

19 - Model to Django Admin

20 - Model in a View

21 - Dynamic URL-based Lookups

22 - Handling Dynamic URL Errors

23 - Get Object or 404

24 - A New Database Lookup Value

25 - QuerySet Lookups

26 - A Unique Slug

27 - CRUD and Views

28 - CRUD View Outline

29 - Blog Post List View

30 - Routing the Views

32 - In App Templates

33 - Submit Raw HTML Form

34 - A Django Form

35 - Saving Data from a Django Form

36 - Model Form

37 - Validate Data on Fields

38 - Login Required

39 - Associate Blog Post to a User with Foreign Keys

40 - Logged In User & Forms

41 - Update View with Model Form

42 - Better Validation on Update Views

43 - Delete and Confirm

44 - Blog Post Navigation

45 - Include the Navbar

46 - Include with Arguments

47 - An Included Template for Consistent Design

48 - Publish Date, Timestamp & Updated

49 - Model Managers and Custom QuerySets

50 - Published and Draft Posts

51 - Static Files and Uploading Files

52 - Image Field and Uploading Images

53 - Putting it All Together

54 - Complex Lookups

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].