I made some progress today with the Django installation for Grotto. I had been stuck trying to get my new models (room, character) showing up in Django admin, but it was because I was trying to copy the pretty elaborate admin.py models for the tutorial polls app, which wasn’t working for some reason. Diana suggested I follow the general case from the django docs instead which was much easier-

from django.contrib import admin
from mapBuilder.models import Character  
admin.site.register(Character)
from .models import Character

the django admin page for Grotto