├── .gitignore ├── Dockerfile ├── LICENSE.md ├── Pipfile ├── Pipfile.lock ├── README.md ├── docker-compose.yml ├── fixtures └── users │ └── user.yaml ├── manage.py ├── pylintrc ├── scripts ├── manage ├── migrate ├── seed ├── start-app ├── start-container └── wait-for-postgres.sh ├── server ├── __init__.py ├── schema.py ├── urls.py └── wsgi.py ├── settings ├── __init__.py ├── base.py ├── local.py └── production.py └── users ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── schema.py ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /fixtures/users/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/fixtures/users/user.yaml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/manage.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/pylintrc -------------------------------------------------------------------------------- /scripts/manage: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | pipenv run python manage.py "$@" 3 | -------------------------------------------------------------------------------- /scripts/migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/scripts/migrate -------------------------------------------------------------------------------- /scripts/seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/scripts/seed -------------------------------------------------------------------------------- /scripts/start-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/scripts/start-app -------------------------------------------------------------------------------- /scripts/start-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/scripts/start-container -------------------------------------------------------------------------------- /scripts/wait-for-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/scripts/wait-for-postgres.sh -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/server/schema.py -------------------------------------------------------------------------------- /server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/server/urls.py -------------------------------------------------------------------------------- /server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/server/wsgi.py -------------------------------------------------------------------------------- /settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/settings/base.py -------------------------------------------------------------------------------- /settings/local.py: -------------------------------------------------------------------------------- 1 | from .base import * 2 | 3 | # SECURITY WARNING: don't run with debug turned on in production! 4 | DEBUG = True 5 | -------------------------------------------------------------------------------- /settings/production.py: -------------------------------------------------------------------------------- 1 | from .base import * 2 | -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/users/models.py -------------------------------------------------------------------------------- /users/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/users/schema.py -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kadenbarlow/django-postgres-graphql-boilerplate/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | --------------------------------------------------------------------------------