Skip to content

rahulcs754/Todolist_Django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TodoList Django

In this repo, I will created todolist project app. Online demo

Usage

You can clone the project and run the following command to install:

$ git clone https://github.com/rahulcs754/Todolist_Django.git

I consider, You have already installed virtualenv and pip.

First of all, create a virtualenv in a working directory

$ virtualenv virtualenv_name

after that you have to activate virtualenv machine by using the below command

In linux

$ source virtualenv_name/bin/activate

In Windows

$ source virtualenv_name/Scripts/activate

Installing list of dependencies to file

pip install -r requirements.txt

create database

$ python manage.py migrate

create admin username and password

$ python manage.py createsuperuser

run main file

$ python manage.py runserver

Note : Make sure you cd into the clone folder before performing the command above.

Stack

python3