lifeStores TH Python

Django and Graphql, Implementation

Installation

To install and get this application running on your local machine follow the instructions below.

Requirements 🪛:

Clone the application

  git clone https://github.com/JuliRash/lifestores-th.git

Navigate to the directory

  cd lifestores-th

Build Appliccation ⚙️:

  docker-compose up

Testing make sure you have built the application

  docker-compose  run django  python manage.py test

Access Application URL

http://localhost:8050

Graphql Query Example

      query {
        allProducts {
          id
          name
          sku
          price
          image
        }
      }