This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.1.0 | |
info: | |
title: Demo | |
components: | |
schemas: | |
Event: | |
type: object | |
properties: | |
field_1: | |
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Custom Celery task for providing useful extensions | |
http://docs.celeryproject.org/en/latest/userguide/tasks.html#custom-task-classes | |
""" | |
from celery.app.task import Task | |
from django.db import transaction | |
class BetterCeleryTask(Task): | |
"""Extend the default Task class to add helpers with Django's on_commit().""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import six | |
from django.contrib.gis.geos import Point | |
from haystack import indexes | |
from haystack.exceptions import SpatialError | |
from haystack.utils.geo import ensure_geometry, ensure_point | |
def ensure_multipoint(geom): | |
""" | |
Makes sure the parameter passed in looks like a GEOS ``MultiPoint``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib import admin | |
from django.contrib.auth.models import User | |
from django.core.urlresolvers import reverse | |
from django.db.models import get_models | |
from django.test import TestCase | |
class TestAdminViews(TestCase): | |
def setUp(self): | |
username = "test" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Generic method (disclaimer: I did not consider any security concerns) to get stats | |
on a model in Django. | |
Created from http://stackoverflow.com/questions/8746014/django-group-sales-by-month | |
""" | |
from django.db import connection | |
from django.db.models import Sum, Count | |
def truncate_date_model(model, period_length, date_field, criteria=None, pk='pk'): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
database: | |
# Use postgres 9.1 | |
pre: | |
- sudo service postgresql stop && sudo apt-get remove -y postgresql-9.3 && sudo apt-get update && sudo apt-get install -y postgresql-9.1 postgresql-contrib-9.1 postgresql-9.1-postgis-2.1 | |
- sudo sed -i "s/\port = 5433/port = 5432/" /etc/postgresql/9.1/main/postgresql.conf | |
- sudo cp /etc/postgresql/9.3/main/pg_hba.conf /etc/postgresql/9.1/main/pg_hba.conf | |
- sudo service postgresql restart | |
- sudo -u postgres createuser ubuntu -d --superuser | |
- createdb circle_test |