Giter Site home page Giter Site logo

task-manager-app's Introduction

Task-Manager-App


A Todo List Application where backend is built using Django and Django-rest-framework and frontend is built using Reactjs.

Main Features:


  • Users can view the completed tasks and incomplete tasks.
  • Users can add tasks.
  • Users can update tasks.
  • Users can delete tasks.

Screenshots:


Home Page Incomplete tasks:

home_page_incomplete_task

Home Page completed tasks:

home_page_completed_task

Add Task:

add_task

Task Added:

task_added

Edit Task:

edit_task

Task Edited:

task_edited

Installation and setup instructions:


First clone down this repository. You will need node and npm globally installed on your machine. Also to run backend you need python and pip installed on your system.

it is recommended to create a virtual environment for your project. So that all the dependencies will be installed on this virtual environment and not globally.

Server:


Setup of Virtual Environment:

If you want all your dependencies installed globally on your machine you can skip this part.

to create a virtual environment and active it first go to the directory where you cloned this repository and type the following commands.

$ python -m venv env
$ source env/Scripts/activate

now the virtual environment will be activated. To deactivate type

$ deactivate
installation of dependencies:

To install dependencies go to the backend directory and type the following command.

$ pip install -r requirements.txt
migrate:

To migrate run the following commands.

$ python manage.py makemigrations
$ python manage.py migrate

Now all the database schemas should be created at this point.

Start the server:

to start the server type

$ python manage.py runserver

This will let the server up and running.

Create Super User:

You can also create a superuser for your django admin panel. Though this part is optional. To crate a superuser just type the following command.

$ python manage.py createsuperuser

Client:


To run the client go to the frontend directory and type the following commands.

$ npm install
$ npm start

Now go to your favorite browser and on the search bar type

locahost:3000

This will let your app start running.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.