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

372 B · 23 lines Raw History
 1from framework.settings import *
 2from os import join
 3
 4
 5DEBUG = True
 6TEMPLATE_DEBUG = DEBUG
 7
 8
 9DATABASES = {
10    'default': {
11        'ENGINE': 'django.db.backends.sqlite3',
12        'NAME': join(SITE_ROOT, 'development.db'),
13    }
14}
15
16
17CACHES = {
18    'default': {
19        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
20        'LOCATION': 'django-isaac'
21    }
22}