├── .dockerignore ├── .github ├── CODEOWNERS └── workflows │ ├── build-and-test.yml │ ├── docker-publish.yml │ ├── helm-chart.yaml │ └── lint.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── app ├── billing │ ├── activities.go │ ├── api.go │ ├── api_test.go │ ├── worker.go │ └── workflows.go ├── config │ └── config.go ├── db │ ├── db.go │ └── schema.sql ├── fraud │ ├── api.go │ └── api_test.go ├── order │ ├── activities.go │ ├── activities_test.go │ ├── api.go │ ├── worker.go │ ├── workflows.go │ └── workflows_test.go ├── server │ └── server.go ├── shipment │ ├── activities.go │ ├── api.go │ ├── api_test.go │ ├── worker.go │ ├── workflows.go │ └── workflows_test.go ├── temporalutil │ ├── codec_server.go │ ├── data_converter.go │ ├── encryption_test.go │ └── worker_context.go └── test │ └── order_test.go ├── charts └── reference-app-orders-go │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── _helpers.tpl │ ├── api-servicemonitors.yaml │ ├── billing-api-deployment.yaml │ ├── billing-api-service.yaml │ ├── billing-worker-deployment.yaml │ ├── main-api-deployment.yaml │ ├── main-api-service.yaml │ ├── main-worker-deployment.yaml │ ├── mongodb-service.yaml │ ├── mongodb-statefulset.yaml │ ├── web-deployment.yaml │ ├── web-service.yaml │ ├── worker-servicemonitors.yaml │ └── worker-services.yaml │ └── values.yaml ├── cmd └── oms │ └── main.go ├── deployments ├── .gitkeep ├── create-eks.sh ├── create-k8s.sh ├── docker-compose-split.yaml ├── docker-compose.yaml ├── install-temporal.sh ├── k8s │ ├── billing-api-deployment.yaml │ ├── billing-api-service.yaml │ ├── billing-worker-deployment.yaml │ ├── codec-server-deployment.yaml │ ├── codec-server-service.yaml │ ├── main-api-deployment.yaml │ ├── main-api-service.yaml │ ├── main-worker-deployment.yaml │ ├── mongo-persistentvolumeclaim.yaml │ ├── mongo-service.yaml │ ├── mongo-statefulset.yaml │ ├── oms-namespace.yaml │ ├── web-deployment.yaml │ └── web-service.yaml ├── port-forward-codec-server.sh ├── port-forward-temporal-ui.sh └── port-forward-web.sh ├── docs ├── .gitkeep ├── README.md ├── deploy-on-k8s.md ├── images │ ├── communication-1020w.png │ ├── encrypted-data-in-terminal.png │ ├── high-level-overview-diagram.png │ ├── oms-architecture-scaled-1200w.png │ ├── oms-logo.png │ ├── web-ui-encrypted-data.png │ ├── web-ui-example.png │ ├── with-data-converter.png │ └── without-data-converter.png ├── overview.md ├── process-basic-order.md ├── process-complex-order.md ├── product-requirements.md ├── run-local-cli-service.md ├── run-local-codec-server.md ├── run-temporal-cloud.md └── technical-description.md ├── go.mod ├── go.sum └── revive.toml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cretz @tomwheeler @paulnpdev @robholland @Alex-Tideman 2 | -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/helm-chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/.github/workflows/helm-chart.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/README.md -------------------------------------------------------------------------------- /app/billing/activities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/billing/activities.go -------------------------------------------------------------------------------- /app/billing/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/billing/api.go -------------------------------------------------------------------------------- /app/billing/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/billing/api_test.go -------------------------------------------------------------------------------- /app/billing/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/billing/worker.go -------------------------------------------------------------------------------- /app/billing/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/billing/workflows.go -------------------------------------------------------------------------------- /app/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/config/config.go -------------------------------------------------------------------------------- /app/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/db/db.go -------------------------------------------------------------------------------- /app/db/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/db/schema.sql -------------------------------------------------------------------------------- /app/fraud/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/fraud/api.go -------------------------------------------------------------------------------- /app/fraud/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/fraud/api_test.go -------------------------------------------------------------------------------- /app/order/activities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/order/activities.go -------------------------------------------------------------------------------- /app/order/activities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/order/activities_test.go -------------------------------------------------------------------------------- /app/order/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/order/api.go -------------------------------------------------------------------------------- /app/order/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/order/worker.go -------------------------------------------------------------------------------- /app/order/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/order/workflows.go -------------------------------------------------------------------------------- /app/order/workflows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/order/workflows_test.go -------------------------------------------------------------------------------- /app/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/server/server.go -------------------------------------------------------------------------------- /app/shipment/activities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/shipment/activities.go -------------------------------------------------------------------------------- /app/shipment/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/shipment/api.go -------------------------------------------------------------------------------- /app/shipment/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/shipment/api_test.go -------------------------------------------------------------------------------- /app/shipment/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/shipment/worker.go -------------------------------------------------------------------------------- /app/shipment/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/shipment/workflows.go -------------------------------------------------------------------------------- /app/shipment/workflows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/shipment/workflows_test.go -------------------------------------------------------------------------------- /app/temporalutil/codec_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/temporalutil/codec_server.go -------------------------------------------------------------------------------- /app/temporalutil/data_converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/temporalutil/data_converter.go -------------------------------------------------------------------------------- /app/temporalutil/encryption_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/temporalutil/encryption_test.go -------------------------------------------------------------------------------- /app/temporalutil/worker_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/temporalutil/worker_context.go -------------------------------------------------------------------------------- /app/test/order_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/app/test/order_test.go -------------------------------------------------------------------------------- /charts/reference-app-orders-go/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/Chart.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/README.md -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/api-servicemonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/api-servicemonitors.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/billing-api-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/billing-api-deployment.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/billing-api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/billing-api-service.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/billing-worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/billing-worker-deployment.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/main-api-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/main-api-deployment.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/main-api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/main-api-service.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/main-worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/main-worker-deployment.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/mongodb-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/mongodb-service.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/mongodb-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/mongodb-statefulset.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/web-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/web-deployment.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/web-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/web-service.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/worker-servicemonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/worker-servicemonitors.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/templates/worker-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/templates/worker-services.yaml -------------------------------------------------------------------------------- /charts/reference-app-orders-go/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/charts/reference-app-orders-go/values.yaml -------------------------------------------------------------------------------- /cmd/oms/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/cmd/oms/main.go -------------------------------------------------------------------------------- /deployments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployments/create-eks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/create-eks.sh -------------------------------------------------------------------------------- /deployments/create-k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/create-k8s.sh -------------------------------------------------------------------------------- /deployments/docker-compose-split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/docker-compose-split.yaml -------------------------------------------------------------------------------- /deployments/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/docker-compose.yaml -------------------------------------------------------------------------------- /deployments/install-temporal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/install-temporal.sh -------------------------------------------------------------------------------- /deployments/k8s/billing-api-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/billing-api-deployment.yaml -------------------------------------------------------------------------------- /deployments/k8s/billing-api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/billing-api-service.yaml -------------------------------------------------------------------------------- /deployments/k8s/billing-worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/billing-worker-deployment.yaml -------------------------------------------------------------------------------- /deployments/k8s/codec-server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/codec-server-deployment.yaml -------------------------------------------------------------------------------- /deployments/k8s/codec-server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/codec-server-service.yaml -------------------------------------------------------------------------------- /deployments/k8s/main-api-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/main-api-deployment.yaml -------------------------------------------------------------------------------- /deployments/k8s/main-api-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/main-api-service.yaml -------------------------------------------------------------------------------- /deployments/k8s/main-worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/main-worker-deployment.yaml -------------------------------------------------------------------------------- /deployments/k8s/mongo-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/mongo-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /deployments/k8s/mongo-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/mongo-service.yaml -------------------------------------------------------------------------------- /deployments/k8s/mongo-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/mongo-statefulset.yaml -------------------------------------------------------------------------------- /deployments/k8s/oms-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/oms-namespace.yaml -------------------------------------------------------------------------------- /deployments/k8s/web-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/web-deployment.yaml -------------------------------------------------------------------------------- /deployments/k8s/web-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/k8s/web-service.yaml -------------------------------------------------------------------------------- /deployments/port-forward-codec-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/port-forward-codec-server.sh -------------------------------------------------------------------------------- /deployments/port-forward-temporal-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/deployments/port-forward-temporal-ui.sh -------------------------------------------------------------------------------- /deployments/port-forward-web.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | kubectl port-forward -n oms deployment/oms-web 3000 4 | -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/deploy-on-k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/deploy-on-k8s.md -------------------------------------------------------------------------------- /docs/images/communication-1020w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/images/communication-1020w.png -------------------------------------------------------------------------------- /docs/images/encrypted-data-in-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/images/encrypted-data-in-terminal.png -------------------------------------------------------------------------------- /docs/images/high-level-overview-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/images/high-level-overview-diagram.png -------------------------------------------------------------------------------- /docs/images/oms-architecture-scaled-1200w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/images/oms-architecture-scaled-1200w.png -------------------------------------------------------------------------------- /docs/images/oms-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/images/oms-logo.png -------------------------------------------------------------------------------- /docs/images/web-ui-encrypted-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/images/web-ui-encrypted-data.png -------------------------------------------------------------------------------- /docs/images/web-ui-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/images/web-ui-example.png -------------------------------------------------------------------------------- /docs/images/with-data-converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/images/with-data-converter.png -------------------------------------------------------------------------------- /docs/images/without-data-converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/images/without-data-converter.png -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/process-basic-order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/process-basic-order.md -------------------------------------------------------------------------------- /docs/process-complex-order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/process-complex-order.md -------------------------------------------------------------------------------- /docs/product-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/product-requirements.md -------------------------------------------------------------------------------- /docs/run-local-cli-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/run-local-cli-service.md -------------------------------------------------------------------------------- /docs/run-local-codec-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/run-local-codec-server.md -------------------------------------------------------------------------------- /docs/run-temporal-cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/run-temporal-cloud.md -------------------------------------------------------------------------------- /docs/technical-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/docs/technical-description.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/go.sum -------------------------------------------------------------------------------- /revive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/reference-app-orders-go/HEAD/revive.toml --------------------------------------------------------------------------------