{"catalogRevision":"cat_f13ab9a494120b5e","recipeId":"page:recipes:admin-dashboard:django:tenant-workspaces","recipeRevision":"r1","canonicalPath":"/recipes/admin-dashboard/django/tenant-workspaces","label":"Host admin dashboard with Django: tenant-scoped workspaces","family":"Workload recipe","summary":"Deploy a admin dashboard built with Django on Ample using the multi-tenant relational data pattern. Compute runs the app in an isolated microVM behind a public HTTPS URL, a managed PostgreSQL 16 database is auto-provisioned and injected as DATABASE_URL. Verified on Django: a tenant column on every row and query, with a cross-tenant read returning nothing (tenant_isolation=ok). Not separately tested: your tenant model, membership and per-tenant authorization; treat the admin dashboard-specific behavior as your application code.","representativeQueries":["Host admin dashboard with Django: tenant-scoped workspaces","Where can I host Admin dashboard built with Django?","I need an explicit tenant model and application-enforced tenant isolation tests."],"breadcrumbIds":["discovery","workload","workload:portals-and-communities","workload:admin-dashboard","page:recipes:admin-dashboard:django:tenant-workspaces"],"breadcrumbs":[{"id":"discovery","label":"Agent hosting discovery","canonicalPath":"/discover/discovery","kind":"root"},{"id":"workload","label":"Applications and workloads","canonicalPath":"/discover/workload","kind":"facet"},{"id":"workload:portals-and-communities","label":"Portals and communities","canonicalPath":"/discover/workload/portals-and-communities","kind":"group"},{"id":"workload:admin-dashboard","label":"Admin dashboard","canonicalPath":"/discover/workload/admin-dashboard","kind":"atom"},{"id":"page:recipes:admin-dashboard:django:tenant-workspaces","label":"Host admin dashboard with Django: tenant-scoped workspaces","canonicalPath":"/recipes/admin-dashboard/django/tenant-workspaces","kind":"recipe"}],"parentIds":["workload:admin-dashboard","stack:framework-django","pattern:multi-tenant-relational-data","intent:deploy-web-app"],"parents":[{"id":"workload:admin-dashboard","label":"Admin dashboard","canonicalPath":"/discover/workload/admin-dashboard","kind":"atom"},{"id":"stack:framework-django","label":"Django","canonicalPath":"/discover/stack/framework-django","kind":"atom"},{"id":"pattern:multi-tenant-relational-data","label":"Multi-tenant relational data","canonicalPath":"/discover/pattern/multi-tenant-relational-data","kind":"atom"},{"id":"intent:deploy-web-app","label":"Deploy web app","canonicalPath":"/discover/intent/deploy-web-app","kind":"atom"}],"resourceRequirements":["primitive:compute","primitive:postgres"],"infrastructureRequirements":[{"primitiveId":"primitive:compute","label":"Compute","canonicalPath":"/discover/primitive/compute","status":"verified","summary":"Apps run in isolated x86_64 Firecracker microVMs that auto-pause when idle and wake on request; sizes are the priced VM sizes."},{"primitiveId":"primitive:postgres","label":"Postgres","canonicalPath":"/discover/primitive/postgres","status":"verified","summary":"Managed PostgreSQL 16 runs in its own microVM and is auto-provisioned when an app needs a database and no DATABASE_URL is supplied."}],"framework":"Django","workload":"Admin dashboard","releaseStatus":"published","supportStatus":"verified","executionStatus":"ready","docsOnly":false,"prerequisites":["A Django project that builds and starts with the documented commands (pip install into .ample/python from requirements.txt, then waitress serving project.wsgi from run.py reading PORT on the python-3.12 template)","A PostgreSQL driver reading DATABASE_URL at runtime (auto-provisioned when omitted, or supplied with --env)","An Ample account token with servers:write, databases:read"],"testedConfiguration":{"template":"python-3.12","runtime":"python","size":"s-1vcpu-1gb","install":"python3 -m pip install --target .ample/python -r requirements.txt","start":"PYTHONPATH=.ample/python:${PYTHONPATH:-} python3 run.py"},"inputSchema":{"additionalProperties":false,"properties":{"env":{"description":"Encrypted environment variables (bucket credentials, secrets)","items":{"pattern":"^[A-Z][A-Z0-9_]*=.*$","type":"string"},"maxItems":50,"type":"array"},"name":{"description":"App name","maxLength":63,"minLength":1,"pattern":"^[a-z0-9-]+$","type":"string"},"path":{"description":"Project directory or ample.toml service","maxLength":512,"minLength":1,"type":"string"},"release_command":{"description":"Migration command run before activation","maxLength":512,"type":"string"},"start":{"description":"Start command (Python apps pass one explicitly)","maxLength":512,"type":"string"}},"required":["name","path","start"],"type":"object"},"outputSchema":null,"workflowSteps":[{"title":"Build and start","body":"pip install into .ample/python from requirements.txt, then waitress serving project.wsgi from run.py reading PORT on the python-3.12 template. The server must bind 0.0.0.0 on PORT."},{"title":"Implement the pattern on PostgreSQL","body":"The fixture's module implements multi-tenant relational data: a tenant column on every row and query, with a cross-tenant read returning nothing (tenant_isolation=ok). Copy the approach into your schema; keep migrations idempotent and run them with --release-command."},{"title":"Deploy","body":"Run the synchronous deploy once and read the result (exit 0 live, 1 failed, 2 blocked). Re-running with no change is a no-op.","command":"ample deploy . --name <app-name> --public --start \"python3 run.py\""},{"title":"Verify","body":"Fetch the live URL and the pattern self-test route(s) (/p/multi-tenant-relational-data) from the example; then run your own checks. On failure read `ample logs <deployment_id> --kind build` then `--kind runtime`.","command":"ample logs <deployment_id> --kind build"}],"examples":[{"title":"Django pattern fixture","description":"Multi-pattern Django app whose multi-tenant relational data module was checked live; the module is under tests/deploy-canaries/_pattern-modules.","sourceRef":"tests/deploy-canaries/django-patterns"}],"successChecks":[{"description":"app responds on its public URL","kind":"http_get","path":"/","expect":"ample canary django patterns"},{"description":"multi-tenant-relational-data self-test","kind":"http_get","path":"/p/multi-tenant-relational-data","expect":"tenant_isolation=ok"}],"limitations":["Verified on the python-3.12 template at s-1vcpu-1gb with the example fixture; other sizes, templates and Django major versions are not verified.","The admin dashboard itself (your tenant model, membership and per-tenant authorization) is application code and was not separately tested; the pattern checks are what was verified.","Region, compliance attestations and request-duration limits are unknown and not claimed.","Apps auto-pause when idle and wake on the next request; always-on is an operator setting, not a plan feature.","Managed PostgreSQL 16 only; extensions, connection limits and backup or restore procedures are not verified; apps and their databases are placed together."],"costEstimate":{"currency":"USD","monthlyAmount":10.0,"authoritative":true,"basis":"size prices from pricing.toml (loaded by the API) at build revision 084676a47ba1bba65d47f8b6eb86bca27c92a57a","components":[{"name":"app server","size":"s-1vcpu-1gb","quantity":1.0,"monthlyAmount":5.0},{"name":"managed PostgreSQL database","size":"s-1vcpu-1gb","quantity":1.0,"monthlyAmount":5.0}],"note":"Always-on monthly price of the tested sizes; apps and databases auto-pause when idle. Buckets are allocation-priced per quota and not included."},"evidenceSummary":[{"kind":"canary_run","summary":"Django pattern fixture deployed on Ample (pip install into .ample/python from requirements.txt, then waitress serving project.wsgi from run.py reading PORT on the python-3.12 template); checks passed for multi-tenant-relational-data and configuration-secrets. Pattern proof: a tenant column on every row and query, with a cross-tenant read returning nothing (tenant_isolation=ok).","observedAt":"2026-09-20T03:31:44Z","implementationRevision":"03b6402b1b3e19178985f08ea4033804521d85d4 (CLI b75e104)","expiresAt":"2027-03-19T03:31:44Z","scope":{"checks":["/p/multi-tenant-relational-data"],"pattern":"pattern:multi-tenant-relational-data","template":"python-3.12"}},{"kind":"canary_run","summary":"The same Django app deployed with a --release-command migration; the marker it created was readable after activation.","observedAt":"2026-09-20T01:54:51Z","implementationRevision":"199ff1dfd52683832ae75d3f98b53a7a4bff7f96 (CLI e3181f5)","expiresAt":"2027-03-19T01:54:51Z","scope":{"pattern":"pattern:multi-tenant-relational-data"}}],"lastVerifiedAt":"2026-09-20T03:31:44Z","mcpBinding":{"registryRef":"mcp:ample_deploy","toolName":"ample_deploy","schemaHash":"876465fce906da0c224d62961d3343064108ebe30af80cf1b87094974e948853","observedAt":"2026-09-22T00:31:22.774679+00:00","implementationRevision":"e6446ceea69b","requiredScopes":["servers:write","databases:read"],"bindingState":"current"},"unknowns":["region availability is unknown until a verified region fact is recorded","compliance attestations are unknown; none are claimed"],"formats":{"html":"https://ample.computer/recipes/admin-dashboard/django/tenant-workspaces","markdown":"https://ample.computer/recipes/admin-dashboard/django/tenant-workspaces.md","json":"https://api.ample.computer/v1/catalog/recipes/page%3Arecipes%3Aadmin-dashboard%3Adjango%3Atenant-workspaces"},"nextActions":[{"actionId":"browse-catalog","label":"Browse the catalog index","operationId":"catalog_index","method":"GET","relativePath":"/v1/catalog","origin":"api","parameters":{},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"search-recipes","label":"Search published recipes by intent, stack and constraints","operationId":"search_recipes","method":"POST","relativePath":"/v1/catalog/search","origin":"api","parameters":{"body":{"limit":5,"query":"Host admin dashboard with Django: tenant-scoped workspaces"}},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"plan:page:recipes:admin-dashboard:django:tenant-workspaces","label":"Prepare a side-effect-free deployment plan for an authorized project","operationId":"plan_deployment","method":"POST","relativePath":"/v1/catalog/plan","origin":"api","parameters":{"body":{"inputs":{},"projectId":"<workspace or server id you own>","recipeId":"page:recipes:admin-dashboard:django:tenant-workspaces","recipeRevision":"r1"}},"requiresAuthentication":true,"requiresApproval":false},{"actionId":"auth-setup","label":"Read the existing agent authentication setup","operationId":"existing_auth_setup","method":"GET","relativePath":"/mcp/setup","origin":"api","parameters":{},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:workload:admin-dashboard","label":"Browse Admin dashboard","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/workload%3Aadmin-dashboard","origin":"api","parameters":{"nodeId":"workload:admin-dashboard"},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:stack:framework-django","label":"Browse Django","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/stack%3Aframework-django","origin":"api","parameters":{"nodeId":"stack:framework-django"},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:pattern:multi-tenant-relational-data","label":"Browse Multi-tenant relational data","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/pattern%3Amulti-tenant-relational-data","origin":"api","parameters":{"nodeId":"pattern:multi-tenant-relational-data"},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:intent:deploy-web-app","label":"Browse Deploy web app","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/intent%3Adeploy-web-app","origin":"api","parameters":{"nodeId":"intent:deploy-web-app"},"requiresAuthentication":false,"requiresApproval":false}]}