From ccbe943b89076dcc2be9ba930e505c7b57606939 Mon Sep 17 00:00:00 2001 From: joshmossas Date: Tue, 24 Sep 2024 23:27:50 -0500 Subject: [PATCH] add go instructions --- CONTRIBUTING.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 21ef6c75..aaceb1f9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -33,6 +33,7 @@ To be able to build and run everything you currently need: - [The Dart SDK](https://dart.dev/get-dart) for Dart - [The Rust compiler & Cargo](https://www.rust-lang.org/learn/get-started) for Rust +- [The Go compiler](https://go.dev/doc/install) for Go - [The Swift compiler](https://www.swift.org/documentation/swift-compiler/) for Swift ## Building and Running Tests @@ -104,7 +105,7 @@ There are many cases where you might want to run integration tests against a sin pnpm build # start the test server -pnpm nx dev test-server +pnpm nx dev test-server-ts ``` Next you need to start the integration tests for the specific client you want to test. @@ -119,8 +120,12 @@ That's it. The playground directory is used to experiment with random stuff. You can start the playground dev server like so: -```ts -pnpm nx dev playground +```bash +# spin up the typescript server playground +pnpm nx dev ts-playground + +# spin up the go server playground +pnpm nx dev go-playground ``` Just don't commit any changes made in the playground directory.