Skip to content

lk-geimfari/django-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-template

A highly opinionated starter project which I use as a scaffold for all my Django projects.

Features

No one forcing you to use any of these things, so if you don't need something then just don't use it.

What is missing?

You never know how your next project will look like, so there are no:

  • Templates
  • Forms
  • Views
  • Models (although there is a TimestampMixin model which is commonly used in every projects)

You have to add all these things yourself, according to your needs.

Keeping things in order

  • Avoid duplication
  • Keep your business logic in app_name/logic/
  • Always format your code using scripts/format.sh

About

This template is inspired by wemake-django-template.