Skip to content

Django-based web application that clones the popular project management tool Trello.

Notifications You must be signed in to change notification settings

super999christ/kanban-board

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Trello Clone

Here we build a clone of the well known project-management application using Django Rest Frameworks, Javascript, Ajax and HTML/CSS.

Prerequisites

  • PostgreSQL - An open source object-relational database system
  • Postico - A Modern PostgreSQL Client for OSX

Python3

pip install python3

Additional python libraries needed to run this project

pip install -r requirements.txt

Installing

After cloning or downloading this repo, change the settings.py to satisfy your personal specs:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME': '<[your database name]>',
        'USER': '<[your username]>',
        'PASSWORD': '',
        'HOST': '127.0.0.1',
        'PORT': '5432',
    }
}

Next, create a new database in Postico that matches the name used in the settings.py.

From manager directory execute:

python manage.py migrate

Then execute:

python manage.py runserver

and navigate to Home Page

Built With

  • Django - The web framework used

About

Django-based web application that clones the popular project management tool Trello.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published