Uses django paginator for feed page

This commit is contained in:
Mouse Reeve
2020-11-11 10:35:34 -08:00
parent 92c34ccbf6
commit 91a32c014e
2 changed files with 16 additions and 10 deletions

View File

@ -6,6 +6,8 @@ from environs import Env
env = Env()
DOMAIN = env('DOMAIN')
PAGE_LENGTH = env('PAGE_LENGTH', 15)
# celery
CELERY_BROKER = env('CELERY_BROKER')
CELERY_RESULT_BACKEND = env('CELERY_RESULT_BACKEND')