for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from groundwork_web.patterns import GwWebDbAdminPattern
class GwWebDbManager(GwWebDbAdminPattern):
def __init__(self, *args, **kwargs):
self.name = kwargs.get("name", self.__class__.__name__)
super().__init__(*args, **kwargs)
def activate(self):
self.web.db.register()