Skip to content

agconti/cookiecutter-django-rest

Folders and files

NameName
Last commit message
Last commit date
Aug 30, 2024
Dec 27, 2017
Jan 15, 2025
Jan 14, 2020
Oct 17, 2017
Jun 3, 2015
Aug 30, 2024
Dec 27, 2017

Repository files navigation

cookiecutter-django-rest

cookiecutter-django-rest

a factory for building bleeding edge, best practiced, scalable, rest apis

Build Status Dependencies Python 3

You need to make a scalable api on a deadline. You deeply care about the quality of your work. cookiecutter-django-rest takes care of the details so you can focus on making your api awesome. Scaffolding a project takes seconds and it gives you authentication, user accounts, and the docs and tests to support them. Just add your own resources to the api and start shipping. ✨ 💅

Highlights

  • Modern Python development with Python 3.12+
  • Bleeding edge Django 5.0+
  • Fully dockerized, local development via docker-compose.
  • PostgreSQL 16.4+
  • Start off with full test coverage and continuous integration.
  • Complete Django Rest Framework integration
  • Always current dependencies and security updates enforced by pyup.io.
  • A slim but robust foundation -- just enough to maximize your productivity, nothing more.

Quick Start

Install cookiecutter:

brew install cookiecutter

Scaffold your project:

cookiecutter gh:agconti/cookiecutter-django-rest

Scaffolding

Example of the result: https://github.com/agconti/piedpiper-web

Try creating a user!

curl -d '{"username":"'"$RANDOM"'", "password":"test", "email":"test@test.com", "first_name":"test", "last_name":"user"}' \
     -H "Content-Type: application/json" \
     -X POST https://piedpiper-prod.herokuapp.com/api/v1/users/