2024-02-01 04:48:40 +00:00
|
|
|
# laconic2d
|
|
|
|
|
|
|
|
Install and run `laconic2d`:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# install the laconic2d binary
|
|
|
|
make install
|
|
|
|
|
|
|
|
# initialize the chain
|
|
|
|
make init
|
|
|
|
|
|
|
|
# start the chain
|
2024-03-04 11:16:09 +00:00
|
|
|
laconic2d start --gql-playground --gql-server
|
2024-02-01 04:48:40 +00:00
|
|
|
```
|
2024-02-29 11:54:35 +00:00
|
|
|
|
|
|
|
Run tests:
|
|
|
|
|
|
|
|
```bash
|
2024-03-04 11:16:09 +00:00
|
|
|
# integration tests
|
2024-02-29 11:54:35 +00:00
|
|
|
make test-integration
|
2024-03-04 11:16:09 +00:00
|
|
|
|
|
|
|
# e2e tests
|
|
|
|
make test-e2e
|
2024-02-29 11:54:35 +00:00
|
|
|
```
|