-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe0e0db
commit 5718f86
Showing
15 changed files
with
147 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: Buf | ||
description: Using Buf for developing with Protocol Buffers | ||
--- | ||
|
||
## What is Buf? | ||
|
||
Buf provides value in two forms: | ||
|
||
1. The [Buf CLI][cli] for code generation, breaking change detection, linting, and formatting. | ||
1. The [Buf Schema Registry][bsr] for storing and managing Protobuf files as versioned modules, allowing you to consume and publish APIs without friction. | ||
|
||
[bsr]: https://buf.build/docs/bsr/introduction | ||
[cli]: https://buf.build/docs/ecosystem/cli-overview | ||
|
||
## Buf Schema Registry | ||
|
||
We've published our 4 modules to the BSR: | ||
|
||
- [licenseapis] | ||
- [orgapis] | ||
- [profileapis] | ||
- [temporalapis] | ||
|
||
[licenseapis]: https://buf.build/kevinmichaelchen/licenseapis/docs/main:license.v1beta1 | ||
[orgapis]: https://buf.build/kevinmichaelchen/orgapis/docs/main:org.v1beta1 | ||
[profileapis]: https://buf.build/kevinmichaelchen/profileapis/docs/main:profile.v1beta1 | ||
[temporalapis]: https://buf.build/kevinmichaelchen/temporalapis/docs/main:temporal.v1beta1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
title: Architectural Overview | ||
description: A guide to the overall architecture here. | ||
--- | ||
|
||
Given the name of the project, we have to mention [Temporal][temporal] as an ideal solution for implementing not only “distributed transactions” that span across multiple microservices, but also most asynchronous, relatively long-lived processes, especially ones that involve human interaction. | ||
|
||
## Running things | ||
|
||
- [pkgx][pkgx] and [Taskfile][taskfile] for optimal local DevEx (seamless, portable, invisible) | ||
|
||
## APIs | ||
|
||
- [Tailcall][tailcall] and [GraphQL][graphql] | ||
- [Buf][buf] for [Protocol Buffer][protobuf] tooling | ||
- [ConnectRPC][connect] for backing APIs | ||
|
||
## Data | ||
|
||
- [Atlas][atlas] for declarative database migrations | ||
- [Postgres][postgres] | ||
|
||
## Observability | ||
|
||
- [OpenTelemetry][otel] (OTel) | ||
- [Jaeger][jaeger] (soon to be replaced by [HyperDX][hyperdx]) | ||
|
||
## Frontend | ||
|
||
- [NextJS][nextjs] React framework | ||
- [shadcn/ui][shadcn-ui] for beautiful [Radix][radix]/[Tailwind][tailwind] components | ||
|
||
## Misc | ||
|
||
- [Docker][docker] | ||
- [Golang][golang] | ||
|
||
[atlas]: https://atlasgo.io/ | ||
[buf]: https://buf.build/ | ||
[connect]: https://connectrpc.com/ | ||
[docker]: https://www.docker.com/ | ||
[golang]: https://go.dev/ | ||
[graphql]: https://graphql.org/ | ||
[hyperdx]: https://www.hyperdx.io/ | ||
[jaeger]: https://www.jaegertracing.io/ | ||
[nextjs]: https://nextjs.org/ | ||
[otel]: https://opentelemetry.io/ | ||
[postgres]: https://www.postgresql.org/ | ||
[pkgx]: https://pkgx.sh/ | ||
[protobuf]: https://protobuf.dev/ | ||
[radix]: https://www.radix-ui.com/ | ||
[shadcn-ui]: https://ui.shadcn.com/ | ||
[tailcall]: https://tailcall.run/ | ||
[tailwind]: https://tailwindcss.com/ | ||
[taskfile]: https://taskfile.dev/ | ||
[temporal]: https://temporal.io/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters