Skip to content

Commit 8c617c3

Browse files
authored
Add Nixhub Links to examples (#1280)
## Summary TSIA ## How was it tested? Clicked each of the links to verify, also ran with `yarn start`
1 parent 24292b1 commit 8c617c3

File tree

18 files changed

+22
-14
lines changed

18 files changed

+22
-14
lines changed

docs/app/docs/devbox_examples/databases/mariadb.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ You can manually add the MariaDB Plugin to your `devbox.json` by adding it to yo
2424
"plugin:mariadb"
2525
]
2626
```
27+
This will install the latest version of MariaDB. You can find other installable versions of MariaDB by running `devbox search mariadb`. You can also view the available versions on [Nixhub](https://www.nixhub.io/packages/mariadb)
2728

2829
## MariaDB Plugin Support
2930

docs/app/docs/devbox_examples/databases/mysql.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ You can manually add the MySQL Plugin to your `devbox.json` by adding it to your
2727
]
2828
```
2929

30+
This will install the latest version of MySQL. You can find other installable versions of MySQL by running `devbox search mysql80` or `devbox search mysql57`. You can also view the available versions on [Nixhub](https://www.nixhub.io/packages/mysql80)
31+
3032
## MySQL Plugin Support
3133

3234
Devbox will automatically create the following configuration when you run `devbox add mysql80` or `devbox add mysql57`. You can view the full configuration by running `devbox info mysql`

docs/app/docs/devbox_examples/databases/postgres.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ PostgreSQL can be automatically configured by Devbox via the built-in Postgres P
1818
]
1919
```
2020

21-
This will install the latest version of Postgres. You can find other installable versions of Postgres by running `devbox search postgresql`.
21+
This will install the latest version of Postgres. You can find other installable versions of Postgres by running `devbox search postgresql`. You can also view the available versions on [Nixhub](https://www.nixhub.io/packages/postgresql)
2222

2323
## PostgreSQL Plugin Support
2424

docs/app/docs/devbox_examples/databases/redis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Redis can be configured automatically using Devbox's built in Redis plugin. This
1818
],
1919
```
2020

21-
This will install the latest version of Redis. You can find other installable versions of Redis by running `devbox search redis`.
21+
This will install the latest version of Redis. You can find other installable versions of Redis by running `devbox search redis`. You can also view the available versions on [Nixhub](https://www.nixhub.io/packages/redis)
2222

2323
## Redis Plugin Details
2424

docs/app/docs/devbox_examples/languages/csharp.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ C# and .NET projects can be easily generated in Devbox by adding the dotnet SDK
1919
```
2020
This will install the latest version of the dotnet SDK. You can find other installable versions of the dotnet SDK by running `devbox search dotnet-sdk`.
2121

22+
If you need a specific version of the .NET SDK, you can search on [Nixhub](https://www.nixhub.io/search?q=dotnet)
23+
2224
## Creating a new C# Project
2325

2426
`dotnet new console -lang "C#" -o <name>`

docs/app/docs/devbox_examples/languages/elixir.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Elixir can be configured to install Hex and Rebar dependencies in a local direct
2020
],
2121
```
2222

23-
This will install the latest version of Elixir available. You can find other installable versions of Elixir by running `devbox search elixir`.
23+
This will install the latest version of Elixir available. You can find other installable versions of Elixir by running `devbox search elixir`. You can also search for Elixir on [Nixhub](https://www.nixhub.io/packages/elixir)
2424

2525
## Installing Hex and Rebar locally
2626

docs/app/docs/devbox_examples/languages/fsharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ F# and .NET projects can be easily generated in Devbox by adding the dotnet SDK
1717
"dotnet-sdk@latest"
1818
],
1919
```
20-
This will install the latest version of the dotnet SDK. You can find other installable versions of the dotnet SDK by running `devbox search dotnet-sdk`.
20+
This will install the latest version of the dotnet SDK. You can find other installable versions of the dotnet SDK by running `devbox search dotnet-sdk`. You can also view the available versions on [Nixhub](https://www.nixhub.io/search?q=dotnet)
2121

2222
## Creating a new F# Project
2323

docs/app/docs/devbox_examples/languages/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Go projects can be run in Devbox by adding the Go SDK to your project. If your p
1818
]
1919
```
2020

21-
This will install the latest version of the Go SDK. You can find other installable versions of Go by running `devbox search go`.
21+
This will install the latest version of the Go SDK. You can find other installable versions of Go by running `devbox search go`. You can also view the available versions on [Nixhub](https://www.nixhub.io/packages/go)
2222

2323
If you need additional C libraries, you can add them along with `gcc` to your package list. For example, if libcap is required for yoru project:
2424

docs/app/docs/devbox_examples/languages/haskell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Haskell projects that use the Stack Framework can be run in Devbox by adding the
1919
]
2020
```
2121

22-
This will install GHC, and the Haskell Tool Stack in your Devbox Shell at their latest version. You can find other installable versions of Stack by running `devbox search <pkg>`.
22+
This will install GHC, and the Haskell Tool Stack in your Devbox Shell at their latest version. You can find other installable versions of Stack by running `devbox search <pkg>`.

docs/app/docs/devbox_examples/languages/nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Most NodeJS Projects will install their dependencies locally using NPM or Yarn,
1818
],
1919
```
2020

21-
This will install NodeJS 18, and comes bundled with `npm`. You can find other installable versions of NodeJS by running `devbox search nodejs`.
21+
This will install NodeJS 18, and comes bundled with `npm`. You can find other installable versions of NodeJS by running `devbox search nodejs`. You can also view the available versions on [Nixhub](https://www.nixhub.io/packages/nodejs)
2222

2323
## Adding Yarn as your Package Manager
2424

0 commit comments

Comments
 (0)