Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dbritto-dev/django-graphql-domain-app-template
https://github.com/dbritto-dev/django-graphql-domain-app-template
django django-project-template django-rest-framework graphql graphql-server opencrud python3
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dbritto-dev/django-graphql-domain-app-template
- Owner: dbritto-dev
- Created: 2020-10-29T02:19:30.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-30T01:42:08.000Z (about 4 years ago)
- Last Synced: 2024-10-06T07:21:27.253Z (about 1 month ago)
- Topics: django, django-project-template, django-rest-framework, graphql, graphql-server, opencrud, python3
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project Overview
This project is a template project to scaffold or create the initial structure of your domain app.
**PROJECT STRUCTURE**
| File Name | Description |
| ---------------- | ------------------------------------------------------------------------------------------- |
| `└── tests/` | _This folder should contains the tests for your domain app._ |
| `crud.py` | This file should contains the methods to perform the CRUD operations. |
| `filters.py` | This file should contains the filters that you want to apply to your model. |
| `models.py` | This file should contains the models of your domain app. |
| `README.md` | This file contains the documentation of this project. |
| `schema.py` | This file should contains the Queries and Mutations for your domain app. |
| `serializers.py` | This file should contains the serializers for your domain app. |
| `types.py` | This file should contains the types that you want to expose in graphql for your domain app. |# Scaffolding a domain app
```sh
django-admin startapp --template https://github.com/danilobrinu/django-graphql-domain-app-template/archive/master.zip post
```