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
- Host: GitHub
- URL: https://github.com/dbritto-dev/lqn-graphql-challenge
- Owner: dbritto-dev
- Created: 2020-07-27T12:49:22.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-05T19:52:15.000Z (over 5 years ago)
- Last Synced: 2025-04-02T17:29:34.001Z (over 1 year ago)
- Topics: django, django-rest-framework, graphql, opencrud, python3
- Language: Python
- Homepage:
- Size: 147 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](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`.