Skip to content

Deepanshu0810/django-tutorial-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

What is DJANGO

  • python framework
  • server side framework
  • MVC(Model View Controller) framework
  • MVT(Model View Template) framework
  • easy to built API using django rest framework

MVT

  • Model: Database
  • View: Business Logic
  • Template: UI

Setting up the environment

conda create -p env python
conda activate env/
pip install django

Creating a project

django-admin startproject studybud
cd studybud
python manage.py runserver

Creating an app

python manage.py startapp base

Creating a superuser

python manage.py createsuperuser

migrating the models

python manage.py makemigrations
python manage.py migrate

StudyBud App

StudyBud StudyBud StudyBud StudyBud

About

This is a chatting application built on django and sqlite database. This is a guided project for beginning my python Django journey

Topics

Resources

Stars

Watchers

Forks

Contributors