Skip to content

s-abinash/Django-ToDo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django-Todo App

A web app built on the Django framework and MySQL database to store todo lists.

PRs Welcome

Requirements

  • Python (3.4+)
  • Django
  • mysql-server

Usage

Install pip3

sudo apt-get install python3-pip

Install django

sudo pip3 install django

Install mysql-server

sudo apt-get install mysql-server

Change your mysql-server password in settings.py

Install python3 client for MySQL

sudo apt-get install python3-mysqldb

Start mysql in terminal to CREATE a database named todolist

  • sudo mysql -u root -p
  • CREATE DATABASE todolist;

Create table inside the database

python3 manage.py migrate

Run the app using the following command:

python3 manage.py runserver

Navigate to localhost://8000 on your favourite browser to see the app in action.

Developers

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors