Skip to content

Commit 0a2ad1b

Browse files
feat(readme): refer to the VS Code repository wiki
1 parent 90cc42b commit 0a2ad1b

1 file changed

Lines changed: 6 additions & 13 deletions

File tree

README.md

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,31 +31,24 @@ Get started with SAMT, learn fundamental concepts or extend SAMT with a custom g
3131

3232
## Development Setup
3333

34-
SAMT is written in [Kotlin](https://kotlinlang.org/) and uses [Gradle](https://gradle.org/) as a build tool, for the best developer experience we recommend using [IntelliJ](https://www.jetbrains.com/idea/).
34+
SAMT is written in [Kotlin](https://kotlinlang.org/) and uses [Gradle](https://gradle.org/) as a build tool,
35+
for the best developer experience we recommend using [IntelliJ IDEA](https://www.jetbrains.com/idea/).
3536

3637
If you want to start SAMT locally, simply clone the repository and compile it using Gradle:
3738

3839
```shell
3940
./gradlew assemble
4041
```
4142

42-
You can also compile the CLI module locally:
43-
44-
```shell
45-
./gradlew :cli:shadowJar
46-
```
47-
48-
And then compile SAMT files using this locally compiled version:
43+
And then use this locally compiled SAMT to compile your SAMT files:
4944

5045
```shell
5146
java -jar ./cli/build/libs/samt-cli.jar compile ./specification/examples/todo-service/*.samt
5247
```
5348

54-
If you're more interested in the [SAMT Visual Studio Code plugin](https://github.com/samtkit/vscode) or the related language server, you can also compile it locally as well:
55-
56-
```shell
57-
./gradlew :language-server:shadowJar
58-
```
49+
If you are interested in learning about the functionality and operation of the [SAMT Visual Studio Code Plugin](https://github.com/samtkit/vscode)
50+
or methods for running and debugging the related language server on your local machine,
51+
related documentation is available in the [SAMT VS Code Wiki](https://github.com/samtkit/vscode/wiki).
5952

6053
## Contributing
6154

0 commit comments

Comments
 (0)