You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/src/framework/getting_started.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
# Getting started
1
+
# 🚀 Getting started
2
2
3
3
## Prerequisites
4
-
-`Docker`([OrbStack](https://orbstack.dev/) or [Docker Desktop](https://www.docker.com/products/docker-desktop/))
4
+
-`Docker`[OrbStack](https://orbstack.dev/) or [Docker Desktop](https://www.docker.com/products/docker-desktop/), we recommend OrbStack (faster, smaller memory footprint)
5
5
-[Golang](https://go.dev/doc/install)
6
6
7
7
## Test setup
@@ -11,18 +11,19 @@ To start writing tests create a directory for your project with `go.mod` and pul
11
11
go get github.com/smartcontractkit/chainlink-testing-framework/framework
12
12
```
13
13
14
-
Then download the CLI (runs from directory where you have `go.mod`)
14
+
Then download the CLI (runs from the directory where you have `go.mod`)
15
15
```
16
16
go get github.com/smartcontractkit/chainlink-testing-framework/framework/cmd && \
17
17
go install github.com/smartcontractkit/chainlink-testing-framework/framework/cmd && \
18
18
mv ~/go/bin/cmd ~/go/bin/ctf
19
19
```
20
+
Or download a binary release [here](https://github.com/smartcontractkit/chainlink-testing-framework/releases/tag/framework%2Fv0.1.7) and rename it to `ctf`
21
+
20
22
More CLI [docs](./cli.md)
21
23
22
-
Create an `.envrc` file and put common parameters there (you can use [direnv](https://direnv.net/) to sync them more easily)
24
+
Create an `.envrc` file and do `source .envrc`
23
25
```
24
26
export TESTCONTAINERS_RYUK_DISABLED=true # do not remove containers while we develop locally
0 commit comments