Skip to content

Commit 52c9b55

Browse files
committed
readme: adds instructions for all languages.
1 parent 98c12c0 commit 52c9b55

File tree

5 files changed

+68
-0
lines changed

5 files changed

+68
-0
lines changed

c-sharp/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# C# Workbench
2+
3+
### Instructions
4+
5+
1. Open a new terminal and navigate to this directory.
6+
```bash
7+
/workspaces/language-workbench (main) $ cd c-sharp
8+
/workspaces/language-workbench/c-sharp (main) $
9+
```
10+
2. Run the app using the `dotnet run` command.
11+
```bash
12+
/workspaces/language-workbench/c-sharp (main) $ dotnet run
13+
```

html-css-javascript/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Python Workbench
2+
3+
### Instructions
4+
5+
To run, open the `index.html` file using your favorite browser. If you're using VS Code, you can install the [Live Server][live-server-link] extension and open the file by right-clicking it and selecting `Open with Live Server`. This is pre-install in the Dev Container located in the parent repository.
6+
7+
[live-server-link]: https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer

java/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Java Workbench
2+
3+
### Instructions
4+
5+
1. Open a new terminal and navigate to this directory.
6+
```bash
7+
/workspaces/language-workbench (main) $ cd java
8+
/workspaces/language-workbench/java (main) $
9+
```
10+
2. Execute `./gradlew run` to run the main application.
11+
```bash
12+
/workspaces/language-workbench/java (main) $ ./gradlew run
13+
```
14+
3. Execute `./gradlew test` to run the tests.
15+
```bash
16+
/workspaces/language-workbench/java (main) $ ./gradlew test
17+
```

python/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Python Workbench
2+
3+
### Instructions
4+
5+
1. Open a new terminal and navigate to this directory.
6+
```bash
7+
/workspaces/language-workbench (main) $ cd python
8+
/workspaces/language-workbench/python (main) $
9+
```
10+
2. Execute `python main.py` to run the main application.
11+
```bash
12+
/workspaces/language-workbench/python (main) $ python main.py
13+
```

typescript/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Typescript Workbench
2+
3+
### Instructions
4+
5+
1. Open a new terminal and navigate to this directory.
6+
```bash
7+
/workspaces/language-workbench (main) $ cd typescript
8+
/workspaces/language-workbench/typescript (main) $
9+
```
10+
2. Install node dependencies using `pnpm`.
11+
```bash
12+
/workspaces/language-workbench/typescript (main) $ pnpm install
13+
```
14+
3. Run the `dev` script.
15+
```bash
16+
/workspaces/language-workbench/typescript (main) $ pnpm run dev
17+
```
18+
4. When done, press `Ctrl-C` in the terminal to exit.

0 commit comments

Comments
 (0)