repos

isaacbythewood.com-nextjs

mirror archived upstream

Animation-heavy personal portfolio on Next.js: a custom cursor, a page-transition loader, and canvas backgrounds.

canvas-animationscss-modulesdark-themehandcodednextjspersonal-websiteportfolioreact

227 B · 15 lines · Python Raw History
 1from settings import *
 2from os.path import join
 3
 4
 5DEBUG = True
 6TEMPLATE_DEBUG = DEBUG
 7
 8
 9CACHES = {
10    'default': {
11        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
12        'LOCATION': 'django-isaac'
13    }
14}