3.1. app module

class app.DashboardResponse(projects: list[ProjectContainerTypeVar], tasks: list[TaskTypeVar])[source]

Bases: object

projects: list[ProjectContainerTypeVar]
tasks: list[TaskTypeVar]
class app.ProjectContainer(project: ProjectTypeVar, objectives: list[ObjectiveTypeVar], progress: float)[source]

Bases: Generic[ProjectTypeVar, ObjectiveTypeVar]

objectives: list[ObjectiveTypeVar]
progress: float
project: ProjectTypeVar
async app.create_admin_user(app: Litestar)[source]

Create the admin user configured in the config file.

If a user with the given admin username already exists, no admin user is created.