An open API service indexing awesome lists of open source software.

https://github.com/yourakshaw/task-manager-djangorest

An in memory (NO DATABASE) web application CRUD based RESTful backend for managing personal tasks and notes within a given task.
https://github.com/yourakshaw/task-manager-djangorest

Last synced: 4 months ago
JSON representation

An in memory (NO DATABASE) web application CRUD based RESTful backend for managing personal tasks and notes within a given task.

Awesome Lists containing this project

README

        


django-rest-logo

# Task Manager

## Description

An in memory (NO DATABASE) web application CRUD based RESTful backend for managing personal tasks and notes within a given task.


sample-run-gif

### Pre-setup dependencies

- Git
- Python3

### Setup

`HTTPS`

```bash
git clone https://github.com/Ak-Shaw/task-manager-djangorest.git
```

`SSH`

```bash
git clone [email protected]:Ak-Shaw/task-manager-djangorest.git
```

`dependencies`

```bash
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
python3 manage.py migrate --run-syncdb
```

### Usage

`run server`

```bash
source env/bin/activate
python3 manage.py runserver
```

`testing`

```bash
python3 manage.py test
```

Refer API Usage [here](rest.http).