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

https://github.com/dbritto-dev/lqn-graphql-challenge


https://github.com/dbritto-dev/lqn-graphql-challenge

django django-rest-framework graphql opencrud python3

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

[![DeepSource](https://deepsource.io/gh/dbritto-dev/lqn-graphql-challenge.svg/?label=active+issues&show_trend=true)](https://deepsource.io/gh/dbritto-dev/lqn-graphql-challenge/?ref=repository-badge)

# Create dependencies for Development Workflow

```sh
pip-compile -r requirements/develop.in -o requirements.develop
```

```sh
pip install -r requirements.develop
```

# Create dependencies for Production Workflow

```sh
pip-compile -r requirements/production.in -o requirements.production
```

```sh
pip install -r requirements.production
```

> **Note:** if you need to update the pip package use the next command `python -m pip install --upgrade pip`.
> For the first time use `pip install pip-tools`.