django-template alternatives and similar packages
Based on the "Django" category.
Alternatively, view django-template alternatives based on common mentions on social networks and blogs.
-
doccano
Open source annotation tool for machine learning practitioners. -
django-tastypie
Creating delicious APIs for Django apps since 2010. -
Django REST Swagger
Swagger Documentation Generator for Django REST Framework: deprecated -
django-sql-explorer
Easily share data across your company via SQL queries. From Grove Collab. -
django-admin-interface
:superhero: :zap: django's default admin interface with superpowers - customizable themes, popup windows replaced by modals and many other features. -
django-treenode
:deciduous_tree: probably the best abstract model/admin for your tree based stuff. -
django-maintenance-mode
:construction: :hammer_and_wrench: shows a 503 error page when maintenance-mode is on. -
django-newsfeed
A news curator and newsletter subscription package for Django -
django-modern-rpc
Simple XML-RPC and JSON-RPC server for modern Django -
django-formapi
Django API creation with signed requests utilizing forms for validation. -
Python Blogs
A curated list of python programming language blogs -
fuzzy-couscous
A cli tool to bootstrap your django projects and enhance your development experience. -
django-classifier
Flexible constructor to create dynamic list of heterogeneous properties for some kind of entity. This set of helpers useful to create properties like contacts or attributes for describe car/computer/etc. -
dj-shop-cart
A simple and flexible cart manager for your django projects. -
rest-framework-redesign
Redesign of the browsable api of Django REST Framework using Bootstrap 5 -
rest-framework-material
Redesign of the browsable api of Django REST Framework using MD Bootstrap -
django-extra-tools
A set of functions related with Django
Tired of breaking your main and manually rebasing outdated pull requests?
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of django-template or a related project?
README
[](meta/repo-banner.png) [](meta/repo-banner-bottom.png)
For information on how to use this project template, check out the wiki.
{{ project_name }}
Table of Contents
Requirements
Homebrew (not quite a "requirement" but recommended)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
-
brew install python
pip (should come bundled when installing Python 3 via Homebrew)
-
brew install postgresql
Local Development
Set up the Python virtual environment.
python3 -m venv venv
Run the make setup task. This will install all requirements, link local settings, initialize the local development database, and run all migrations.
make setup
Set up the Git hooks (optional).
make setup-git-hooks
Start the local development server and Sass.
foreman start -f Procfile.dev
Map "local.{{ project_name }}.com" to 127.0.0.0 using DNS. If you haven't yet registered a domain, add the following line to your
/etc/hosts
file.127.0.0.1 local.{{ project_name }}.com
After you've done that, open your browser and navigate to "local.{{ project_name }}.com". Your project is now running!