Mercurial > public > sg101
annotate potd/apps.py @ 1134:e2bad84f704d
Update requirements. Update Django & Celery.
Celery update is needed for Ubuntu 16.04.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 12 Oct 2016 19:30:10 -0500 |
parents | 1cb227d59e20 |
children |
rev | line source |
---|---|
bgneal@916 | 1 from django.apps import AppConfig |
bgneal@916 | 2 |
bgneal@916 | 3 |
bgneal@916 | 4 class PotdConfig(AppConfig): |
bgneal@916 | 5 name = 'potd' |
bgneal@916 | 6 verbose_name = 'Photo of the Day' |
bgneal@916 | 7 label = 'potd' |
bgneal@916 | 8 |
bgneal@916 | 9 def ready(self): |
bgneal@916 | 10 import potd.receivers |