Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 2.21 KB

README.md

File metadata and controls

62 lines (40 loc) · 2.21 KB

license Build Status Coverage Status PEP8 Codacy Badge

Fast Food Fast

Fast food fast is a fast food delivery application

How it Works

  • An admin views orders
  • A user places an order
  • An admin can delete an order
  • An admin can accept an order
  • An admin can mark order as completed

Prerequisite

Installation and Setup

Clone the repository below

git clone https://github.com/salma-nyagaka/fasrfoodfast.git

Create a virtual environment

virtualenv venv --python=python3.6

Activate virtual environment

source venv/bin/activate

Install required Dependencies

pip install -r requirements.txt

Endpoints Available

Method Endpoint Description
POST /api/v1/orders Place an order
GET /api/v1/orders Get all orders
PUT /api/v1/orders/<{id}> Update order status
GET /api/v1/orders/<{id}> Get a specific order
DELETE /api/v1/orders/<{id}> Delete a specific order