Skip to content

Commit

Permalink
Update urls in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor committed Jun 6, 2024
1 parent 4685943 commit 961c128
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ The full documentation can be found [here](https://code.askimed.com/nf-test).
nf-test has the same requirements as Nextflow and can be used on POSIX compatible systems like Linux or OS X. You can install nf-test using the following command:

```bash
curl -fsSL https://code.askimed.com/install/nf-test | bash
curl -fsSL https://get.nf-test.com | bash
```

If you don't have curl installed, you could use wget:

```bash
wget -qO- https://code.askimed.com/install/nf-test | bash
wget -qO- https://get.nf-test.com | bash
```

It will create the `nf-test` executable file in the current directory. Optionally, move the `nf-test` file to a directory accessible by your `$PATH` variable.
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/plugins/using-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For this purpose, we integrated the following plugin system that provides (a) th

## Using Plugins

Available plugins are listed [here](https://code.askimed.com/nf-test-plugins).
Available plugins are listed [here](https://plugins.nf-test.com).

A plugin can be activated via the `nf-test.config` by adding the `plugin` section and by using `load` method to specify the plugin and its version:

Expand Down
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
nf-test has the same requirements as Nextflow and can be used on POSIX compatible systems like Linux or OS X. You can install nf-test using the following command:

```bash
curl -fsSL https://code.askimed.com/install/nf-test | bash
curl -fsSL https://get.nf-test.com | bash
```

If you don't have curl installed, you could use wget:

```bash
wget -qO- https://code.askimed.com/install/nf-test | bash
wget -qO- https://get.nf-test.com | bash
```

It will create the `nf-test` executable file in the current directory. Optionally, move the `nf-test` file to a directory accessible by your `$PATH` variable.
Expand Down Expand Up @@ -48,7 +48,7 @@ Now you are ready to write your [first testcase](docs/getting-started.md).
If you want to install a specific version pass it to the install script as so

```sh
curl -fsSL https://code.askimed.com/install/nf-test | bash -s 0.7.0
curl -fsSL https://get.nf-test.com | bash -s 0.7.0
```

### Manual installation
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ nav:
- clean: docs/cli/clean.md
- Configuration: docs/configuration.md
- Plugins:
- Available Plugins: https://code.askimed.com/nf-test-plugins
- Available Plugins: https://plugins.nf-test.com
- Using Plugins: docs/plugins/using-plugins.md
- Developing Plugins: docs/plugins/developing-plugins.md
- Tutorials: tutorials.md
Expand Down

0 comments on commit 961c128

Please sign in to comment.