Skip to content

Commit

Permalink
add go instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmossas committed Sep 25, 2024
1 parent d025a12 commit ccbe943
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand All @@ -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.
Expand Down

0 comments on commit ccbe943

Please sign in to comment.