← Check out TrackMaven.com

Getting Started with Django REST Framework (DRF) and AngularJS (Part 5)

This is the fifth installment in a multi-part series geared toward getting started with Django Rest Framework (DRF) and AngularJS. The goal of this series is to create an extensive, RESTful web application that uses DRF as a backend DB/API service and AngularJS as a frontend service connecting to the API.

Read Previous Posts:

Getting Started with Django REST Framework (DRF) and AngularJS (Part 4)

This is the fourth installment in a multi-part series geared toward getting started with Django Rest Framework (DRF) and AngularJS. The goal of this series is to create an extensive, RESTful web application that uses DRF as a backend DB/API service and AngularJS as a frontend service connecting to the API.

Read Previous Posts:

Getting Started with Django REST Framework (DRF) and AngularJS (Part 2)

Read: Part 1 - Initial Project Setup Write: Part 2 Supplementary Code

This is the second post in a multi-part series geared toward getting started with Django Rest Framework (DRF) and AngularJS. The goal ... Read more.

Using pytest with Django

When it comes to testing in python pytest is my favorite testing tool. pytest is a testing framework that strips out boilerplate and adds a whole bunch of sensible utilities to make your tests more pythonic. In this post we'll cover how to add that awesomeness to a Django project.

Comparing unitest to ... Read more.

Getting Started with Django REST Framework (DRF) and AngularJS (Part 1)

This is the first section in a series about getting started with Django, Django REST Framework (DRF) and AngularJS. The goal of this series to to create an extensive, RESTful web application that uses Django and Django REST Framework as the server ... Read more.

Announcing Celery Once

At TrackMaven we are big users of Celery, an asynchronous task queue written in Python. Today we're happy to release a useful package we have been using internally called Celery Once!

Celery Once allows you to specify and run unique tasks across your distributed Celery cluster. It can ... Read more.

A Better Development Environment with Docker and Fig

Local development environments can be a nightmare. Have you ever run into a scenario where something works on your machine but not on your colleagues'? Having to spend time debugging platform-specific problems is a frustrating productivity sink.

Before we explore how to set up our stress free development environment, let's consider what key elements it should ... Read more.