Skip to content

harsh6768/Django-Todo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Contribute to this Project ❤️ Star ❤️

👍🎉 First off, thanks for taking the time to contribute! 🎉👍

❤️ Star ❤️ the repo to support the project or 😄Follow Me.Thanks!

Django-Todo

Simple Todo using Django and Bootstrap

Clone Project

 git clone https://github.com/harsh6768/Django-Todo.git

Install Django and setup env for Django Projects

Follow this link https://www.digitalocean.com/community/tutorials/how-to-install-the-django-web-framework-on-ubuntu-18-04 to setup django and env for django projects

Refer to Django Official Site https://www.djangoproject.com/ to get start from basics.

Django Common commands:

  1. Create Django Project

    django-admin startproject test_django
    
  2. Run the Server

    python manage.py runserver
    
  3. Create Django App:

    It's a single module which will help you to seperate your code from other modules.

    python manage.py startapp todos