/Try-Django

Django 3.2 Course from Cfe

Primary LanguagePython

Try Django 3.2

Welcome to the Try-Django repository! This repository contains a Django tutorial that will help you learn the fundamentals of building web applications with Django, a high-level Python web framework. Whether you're a beginner or an experienced developer looking to learn Django, this tutorial is designed to get you started.
A huge shout-out to "Coding for Entrepreneurs" for putting together this fantastic course!
Checkout their youtube channel for this course:
Try-Django-3.2 Youtube Course

Table of Contents

  1. Getting Started
  2. Prerequisites
  3. Installation
  4. Tutorial Content
  5. Contributing

Getting Started

In this project you will learn django which is a popular backend framework in python. This project includes:

  • django models
  • django forms
  • django views
  • django authentication
  • django admin page
  • django signals
  • django urls
  • django db management with migrations & ..
  • configuring settings in django
  • diffrent templates in html, css and js
  • bootstrap framework
  • and more!

Prerequisites

  1. Install python 3.6 on your machine. Install Python
  2. Perhaps you need Git! Install Git

Installation

# Clone the repository
git clone https://github.com/amirh-far/Try-Django.git
cd Try-Django

# Create a virtual environment (optional but recommended)
python -m venv venv
source venv/bin/activate

# Install dependencies
pip install -r requirements.txt

# Create Tables in Database for Existing Apps:
python manage.py makemigrations
python manage.py migrate

# Run the Django development server
python manage.py runserver

Tutorial Content

In this project we don't focus on fancy frontend because we are focusing on learning Django!

Home View

Login View

Recipes List View

Create-Update Recipe View

Contributing

Feel free to modify this template to suit your specific tutorial and repository. Ensure that you provide clear and concise information to help users get started with your Django tutorial.
Happy coding!