Skip to main content

SOP

Sakhas are built using Standard Operating Procedures that are repeated daily. Each day we try to find an improvement of 1% of how to do the tasks so that we can slowly overtime improve each of the businesses

Infra

SOPs have a few things that are common:

  • /sop/. Process Maps
  • /sop/prfaq. PRFAQ
  • /sop/routine. Routine Definitions
    • daily.md. Daily Tasks
    • monthly.md. Monthly Tasks
  • /sop/deming. Deming Charts
terraform {
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "~> 5"
}
}
}

provider "cloudflare" {
}

locals {
domain = "discountcloud.io"
zone_id = ""
}

resource "cloudflare_zero_trust_access_application" "sop" {
domain = "${local.domain}/sop"
type = "self_hosted"
zone_id = local.zone_id
session_duration = "720h"
policies = [{
id = "5e3c1eb1-cef9-4de1-93a3-01ff389a443a"
precedence = 1
}]
}
    [
'@docusaurus/plugin-content-docs',
{
id: 'sop',
path: 'sop',
routeBasePath: 'sop',
sidebarPath: './sidebars.ts',
},
],