page:blueprints:course creators:asset library:django

Course creators: asset library using Django

Summary

A asset library blueprint for course creators built with Django on Ample. Domain schema:

Public information: course catalog and syllabus, instructor profile, schedule. Kept out of scope until handling is reviewed: learner progress and grades, recordings showing learners, payment status. Recordings and progress data are personal data; materials are authorized per course group. Technical basis verified on Django: content-type and size validation that rejects disallowed files, an object written to a private bucket and a row linking the record to the object key (reject=ok upload=ok linked=ok).

Framework

Workload

Industry

Resource Requirements

Infrastructure Requirements

Prerequisites

Workflow Steps

  1. Model the course creators domain: Create the tables course_groups, memberships, sessions, materials, uploads. Cohorts as course groups live in course_groups; keep the sensitive classes (learner progress and grades, recordings showing learners, payment status) out of this schema.
  2. Workflow step 1: Model assets linked to their owning group or workspace.
  3. Workflow step 2: Validate uploads and store them in the private bucket; link each object to its row.
  4. Workflow step 3: Authorize downloads by membership.
  5. Workflow step 4: Deploy and verify rejection of disallowed files and a linked upload.
  6. Deploy: Run the synchronous deploy once and read the result. Re-running with no change is a no-op.
  7. Verify: Run the pattern self-test(s) from the example (/p/browser-file-uploads) and your own acceptance checks for the course creators workflow.

Cost Estimate

Limitations

Next Actions