Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit e7f34dd

Browse files
author
Je
committed
doc: update contributing
1 parent f84114f commit e7f34dd

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

CONTRIBUTING.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,19 @@ Welcome, and thank you for taking time in contributing to aleph.js!
66
All contributors are expected to follow our [Code of Conduct](CODE_OF_CONDUCT.md).
77

88
## Development Setup
9+
You will need [deno](https://deno.land/) 1.4+ and [vscode](https://code.visualstudio.com/) with deno [extension](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno).
910

10-
You will need [deno](https://deno.land/) 1.4+ and [vscode](https://code.visualstudio.com/).
11+
1. Fork this repository to your own GitHub account.
12+
2. Clone the repository to your local device.
13+
3. Create a new branch `git checkout -b BRANCH_NAME`.
14+
4. Change code then run examples.
1115

1216
```bash
13-
# clone the code
14-
$ git clone https://github.com/postui/aleph.js
15-
$ cd aleph.js
17+
deno run -A --unstable --importmap=import_map.json cli.ts ./examples/hello-world --log=debug
18+
```
1619

17-
# run examples
18-
$ deno run -A --unstable --importmap=import_map.json cli.ts ./examples/hello-world --log=debug
20+
## Testing
21+
Running all tests:
22+
```bash
23+
deno test -A --unstable
1924
```

0 commit comments

Comments
 (0)