Skip to content

Commit 1a5a786

Browse files
authored
Merge pull request #534 from threefoldtech/development_wiki_fix
Update and Fix Wiki
2 parents 797fe42 + 6da28f6 commit 1a5a786

6 files changed

Lines changed: 15 additions & 10 deletions

File tree

docs/wiki/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,22 @@
33
* [Intro](./intro.md)
44
* [Installation](./installation.md)
55
* [Installation for JS-NG developers](./devsetup.md)
6-
* Docker based setup
76
* [Interacting with the development shell: jsng](./jsng_shell.md)
87
* FAQ - soon
98
* [API](generated_apis.md)
9+
<!-- * [Docker based setup](./tutorials/docker_images.md) -->
1010
* Tutorials
1111
* [Interacting with Filesystem](./tutorials/salfs.md)
1212
* [Interacting with configurations](./configmgmt.md)
1313
* [Developing a SAL](./tutorials/developing_sal.md)
1414
* [Developing a client](./tutorials/developing_client.md)
15-
* Developing a Builder
1615
* [Using jsync](./tutorials/jsync.md)
16+
* [Using Startup Commands](./tutorials/startup_commands.md)
17+
* [Using Tmux](./tutorials/tmux.md)
18+
* [Github Actions](./tutorials/githubactions-ci.md)
19+
* [Docker Images](./tutorials/docker_images.md)
20+
* [Writing a test](./testing_contribution.md)
21+
<!-- * Developing a Builder -->
1722
* Developers
1823
* Structure
1924
* [Developer setup](./devsetup.md)
@@ -29,7 +34,7 @@
2934
* [Logging](./logging.md)
3035
* [Exceptions](./exceptions.md)
3136
* [Errors](./errorhandling.md)
32-
* RPC
37+
* [RPC](./rpc.md)
3338
* [JS-NG Shell](./jsng_shell.md)
3439
* [API](generated_apis.md)
3540
* Builders

docs/wiki/_sidebar.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@
33
* [Intro](./intro.md)
44
* [Installation](./installation.md)
55
* [Installation for JS-NG developers](./devsetup.md)
6-
* Docker based setup
76
* [Interacting with the development shell: jsng](./jsng_shell.md)
87
* FAQ - soon
98
* [API](generated_apis.md)
9+
<!-- * Docker based setup -->
1010
* Tutorials
1111
* [Interacting with Filesystem](./tutorials/salfs.md)
1212
* [Platform information](./tutorials/platforminfo.md)
1313
* [Interacting with configurations](./configmgmt.md)
1414
* [Developing a SAL](./tutorials/developing_sal.md)
1515
* [Developing a client](./tutorials/developing_client.md)
16-
* Developing a Builder
1716
* [Using jsync](./tutorials/jsync.md)
1817
* [Using Startup Commands](./tutorials/startup_commands.md)
1918
* [Using Tmux](./tutorials/tmux.md)
2019
* [Github Actions](./tutorials/githubactions-ci.md)
2120
* [Docker Images](./tutorials/docker_images.md)
2221
* [Writing a test](./testing_contribution.md)
22+
<!-- * Developing a Builder -->
2323
* Developers
2424
* Structure
2525
* [Developer setup](./devsetup.md)

docs/wiki/editor_setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Installing dependencies from lock file
5151
Package operations: ...
5252
```
5353

54-
After successful installation, we can open vscode and press `Control + P` and try to select the interpreter, it should be listed without any extra configuration:
54+
After successful installation, we can open vscode and press `Control +Shift + P` and try to select the interpreter, it should be listed without any extra configuration:
5555

5656
![selecting-interpreter.png](images/selecting-interpreter.png)
5757

docs/wiki/stores.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ In jumpscale configuration, you can set `always_load` in factory setting section
107107
always_reload = false
108108
```
109109

110-
If se to true, the following example would work (from two different shells):
110+
If set to true, the following example would work (from two different shells):
111111

112112
First get an instance in the first shell:
113113

docs/wiki/tutorials/startup_commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ JS-NG> cmd.stop()
2121
```
2222
## Getting pid of the running process(command)
2323
```
24-
JS-NG> cmd.pid()
24+
JS-NG> cmd.pid
2525
2132
2626
```
2727
## Getting process of the running command
2828
```
29-
JS-NG> cmd.process()
29+
JS-NG> cmd.process
3030
psutil.Process(pid=968692, name='python3', started='00:34:01')
3131
```
3232
### Waiting for a command to stop

docs/wiki/tutorials/tmux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ JS-NG>session = j.core.executors.tmux.create_session("watching system processes"
77
## Creating a window inside session
88

99
```
10-
JS-NG> x.new_window()
10+
JS-NG> session.new_window()
1111
Window(@1 1:zsh, Session($0 ps))
1212
```
1313
## Get or create js session

0 commit comments

Comments
 (0)