Skip to content

Commit a262da5

Browse files
authored
Update open in devbox.sh links (#1089)
## Summary Update readme `open in devbox.sh` button link, and fix badge images ## How was it tested? Markdown preview --------- Signed-off-by: Lucille Hua <[email protected]>
1 parent 6ff05d0 commit a262da5

File tree

28 files changed

+37
-37
lines changed

28 files changed

+37
-37
lines changed

.github/workflows/docs-deploy-preview.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ jobs:
6565
6666
# Make the GitHub branch name safe for Kubernetes namespaces names:
6767
#
68-
# * `sed "s/[^0-9a-zA-Z]/-/g"`: replace any invalid characters in
68+
# * `sed "s/[^0-9a-z]/-/g"`: replace any invalid or uppercase characters in
6969
# the branch name with dashes.
7070
# * `tr -s -`: squash repeated consecutive dashes into one.
7171
# * `cut -b -39`: truncate the name to 39 characters, leaving 24 for
7272
# "devbox-docs-preview-" and "-ref" for a max of 63.
73-
safe_github_ref="$(echo "${GITHUB_REF_NAME}" | sed "s/[^0-9a-zA-Z]/-/g" | cut -b -32)"
73+
safe_github_ref="$(echo "${GITHUB_REF_NAME}" | sed "s/[^0-9a-z]/-/g" | cut -b -32)"
7474
namespace="$(echo "jetpack-io-preview-devbox-${safe_github_ref}-ref" | tr -s -)"
7575
launchpad up docs \
7676
--ttl 300 --debug \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
### Instant, easy, and predictable development environments
1010

11-
[![Join Discord](https://img.shields.io/discord/903306922852245526?color=7389D8&label=discord&logo=discord&logoColor=ffffff)](https://discord.gg/agbskCJXk2) ![License: Apache 2.0](https://img.shields.io/github/license/jetpack-io/devbox) [![version](https://img.shields.io/github/v/release/jetpack-io/devbox?color=green&label=version&sort=semver)](https://github.com/jetpack-io/devbox/releases) [![tests](https://github.com/jetpack-io/devbox/actions/workflows/cli-release.yml/badge.svg)](https://github.com/jetpack-io/devbox/actions/workflows/cli-release.yml?branch=main) [![Built with Devbox](https://jetpack.io/devbox/img/shield_galaxy.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)
11+
[![Join Discord](https://img.shields.io/discord/903306922852245526?color=7389D8&label=discord&logo=discord&logoColor=ffffff)](https://discord.gg/agbskCJXk2) ![License: Apache 2.0](https://img.shields.io/github/license/jetpack-io/devbox) [![version](https://img.shields.io/github/v/release/jetpack-io/devbox?color=green&label=version&sort=semver)](https://github.com/jetpack-io/devbox/releases) [![tests](https://github.com/jetpack-io/devbox/actions/workflows/cli-post-release.yml/badge.svg)](https://github.com/jetpack-io/devbox/actions/workflows/cli-release.yml?branch=main) [![Built with Devbox](https://jetpack.io/img/devbox/shield_galaxy.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)
1212

1313
## What is it?
1414

@@ -22,7 +22,7 @@ Devbox was originally developed by [jetpack.io](https://www.jetpack.io) and is i
2222

2323
You can try out Devbox in your browser using the button below:
2424

25-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox-examples?folder=tutorial)
25+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new)
2626

2727
The example below creates a development environment with `python 2.7` and `go 1.18`, even though those packages are not installed in the underlying machine:
2828

docs/app/docs/devbox_cloud/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Devbox Cloud is currently available in Open Beta, and is under active developmen
2424

2525
Try Devbox Cloud from your browser by visiting [devbox.sh](https://devbox.sh), or click the button below to launch a quickstart shell:
2626

27-
[![Open in Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox-examples?folder=tutorial)
27+
[![Open in Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new)
2828

2929
You can open any Github repo in Devbox Cloud by prefixing `https://devbox.sh/` to the repo URL.
3030

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MariaDB can be automatically configured for your dev environment by Devbox via t
55

66
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/databases/mariadb)
77

8-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/databases/mariadb)
8+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=mariadb)
99

1010
## Adding MariaDB to your Shell
1111

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PostgreSQL can be automatically configured by Devbox via the built-in Postgres P
55

66
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/databases/postgres)
77

8-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/databases/postgres)
8+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=postgres)
99

1010
## Adding Postgres to your Shell
1111

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Redis can be configured automatically using Devbox's built in Redis plugin. This
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/databases/redis)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/databases/redis)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=redis)
1010

1111
## Adding Redis to your shell
1212

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ C# and .NET projects can be easily generated in Devbox by adding the dotnet SDK
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/csharp)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/csharp/hello-world)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=dotnet)
1010

1111
## Adding .NET to your project
1212

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Elixir can be configured to install Hex and Rebar dependencies in a local direct
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/elixir/elixir_hello)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/elixir/elixir_hello)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=elixir)
1010

1111

1212
## Adding Elixir to your project

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ F# and .NET projects can be easily generated in Devbox by adding the dotnet SDK
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/fsharp)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/fsharp/hello-world)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=fsharp)
1010

1111
## Adding .NET to your project
1212

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

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

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/go/hello-world)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/go/hello-world)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=go)
1010

1111
## Adding Go to your Project
1212

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Haskell projects that use the Stack Framework can be run in Devbox by adding the
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/haskell/)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/development/haskell)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=haskell)
1010

1111
## Adding Haskell and Stack to your Project
1212

docs/app/docs/devbox_examples/languages/java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Other distributions of the JDK (such as OracleJDK and Eclipse Temurin) are avail
2828

2929
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/java/gradle/hello-world)
3030

31-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/java/gradle/hello-world)
31+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=java-gradle)
3232

3333
Gradle is a popular, multi-language build tool that is commonly used with JVM projects. To setup an example project using Gradle, follow the instructions below:
3434

@@ -81,7 +81,7 @@ An example `devbox.json` would look like the following:
8181

8282
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/java/maven/hello-world)
8383

84-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/java/maven/hello-world)
84+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=java-maven)
8585

8686
Maven is an all-in-one CI-CD tool for building testing and deploying Java projects. To setup a sample project with Java and Maven in devbox follow the steps below:
8787

docs/app/docs/devbox_examples/languages/nim.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Nim projects can be run in Devbox by adding Nim and Nimble to your project. For
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/nim/spinnytest)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/development/nim/spinnytest)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=nim)
1010

1111
## Adding Nim to your Project
1212

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Most NodeJS Projects will install their dependencies locally using NPM or Yarn,
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/nodejs)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/nodejs/nodejs-npm)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=node-npm)
1010

1111

1212
## Adding NodeJS to your Shell
@@ -24,7 +24,7 @@ This will install NodeJS 18, and comes bundled with `npm`. You can find other in
2424

2525
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/nodejs/nodejs-yarn)
2626

27-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/nodejs/nodejs-yarn)
27+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=node-yarn)
2828

2929
`devbox add yarn`, or in your `devbox.json` add:
3030
```json

docs/app/docs/devbox_examples/languages/php.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PHP projects can manage most of their dependencies locally with `composer`. Some
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/php/php8.1)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/php/php8.1)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=php)
1010

1111
## Adding PHP to your Project
1212

docs/app/docs/devbox_examples/languages/python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This will install Python 3.10 in your shell. You can find other versions of Pyth
2323

2424
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/python/pip)
2525

26-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/python/pip)
26+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=python-pip)
2727

2828
[pip](https://pip.pypa.io/en/stable/) is the standard package manager for Python. Since it installs python packages globally, we strongly recommend using a virtual environment.
2929

@@ -47,7 +47,7 @@ Your virtual environment is created in the `.devbox/virtenv/pip` directory by de
4747

4848
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/python/pipenv)
4949

50-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/python/pipenv)
50+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=python-pipenv)
5151

5252
[pipenv](https://pipenv.pypa.io/en/latest/) is a tool that will automatically set up a virtual environment for installing your PyPi packages.
5353

@@ -70,7 +70,7 @@ This init_hook will automatically start your virtualenv when you run `devbox she
7070

7171
[**Example Link**](https://github.com/jetpack-io/devbox/tree/main/examples/development/python/poetry/poetry-demo)
7272

73-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/python/poetry/poetry-demo)
73+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=python-poetry)
7474

7575
[Poetry](https://python-poetry.org/) is a packaging and dependency manager for Python that helps you manage your Python packages, and can automatically create a virtual environment for your project.
7676

docs/app/docs/devbox_examples/languages/ruby.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Ruby
44

55
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/ruby)
66

7-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/ruby)
7+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=ruby)
88

99
Ruby can be automatically configured by Devbox via the built-in Ruby Plugin. This plugin will activate automatically when you install Ruby 2.7 using `devbox add ruby`.
1010

docs/app/docs/devbox_examples/languages/rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The easiest way to manage Rust with Devbox is to install `rustup`, and then conf
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/rust)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/rust)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=rust)
1010

1111
```json
1212
{

docs/app/docs/devbox_examples/languages/zig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Zig projects can be run in Devbox by adding Zig and Nimble to your project.
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/development/zig/zig-hello-world)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/development/zig/zig-hello-world)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=zig)
1010

1111
## Adding Zig to your Project
1212

docs/app/docs/devbox_examples/servers/apache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Apache can be automatically configured by Devbox via the built-in Apache Plugin.
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/servers/apache)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/servers/apache)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=apache)
1010

1111
### Adding Apache to your Shell
1212

docs/app/docs/devbox_examples/servers/caddy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Caddy can be configured automatically using Devbox's built in Caddy plugin. This
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/servers/caddy)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/servers/caddy)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=caddy)
1010

1111
### Adding Caddy to your Shell
1212

docs/app/docs/devbox_examples/servers/nginx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ NGINX can be automatically configured by Devbox via the built-in NGINX Plugin. T
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/servers/nginx)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/servers/nginx)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=nginx)
1010

1111
## Adding NGINX to your Shell
1212

docs/app/docs/devbox_examples/stacks/django.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This example demonstrates how to configure and run a Django app using Devbox. It
44

55
[Example Repo](https://github.com/jetpack-io/devbox/tree/main/examples/stacks/django)
66

7-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/stacks/django)
7+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=django)
88

99
## How to Use
1010

@@ -66,4 +66,4 @@ You can now start your Django server by running the following command.
6666
python todo_project/manage.py runserver
6767
```
6868

69-
This should start the development server.
69+
This should start the development server.

docs/app/docs/devbox_examples/stacks/drupal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This example shows how to run a Drupal application in Devbox. It makes use of th
66

77
[Example Repo](https://github.com/jetpack-io/devbox/tree/main/examples/stacks/drupal)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/stacks/drupal)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=drupal)
1010

1111
## How to Run
1212

docs/app/docs/devbox_examples/stacks/jekyll.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This example demonstrates how to create and run a Jekyll blog in Devbox. It make
66

77
[Example Repo](https://github.com/jetpack-io/devbox/tree/main/examples/stacks/jekyll)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/stacks/jekyll)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=jekyll)
1010

1111
Inspired by https://litchipi.github.io/nix/2023/01/12/build-jekyll-blog-with-nix.html
1212

@@ -24,4 +24,4 @@ Inspired by https://litchipi.github.io/nix/2023/01/12/build-jekyll-blog-with-nix
2424
1. Run `devbox add ruby_3_1 bundler` to add Ruby and Bundler to your packages
2525
1. Add `"gem install jekyll --version \"~> 3.9.2\""` to your init hook. This will install the Jekyll gem in your local project.
2626
1. Start your `devbox shell`, then run `jekyll new myblog` to create the starter project.
27-
1. From here you can install the project using Bundler, and start the server using `jekyll serve`. See the scripts in this example for more details.
27+
1. From here you can install the project using Bundler, and start the server using `jekyll serve`. See the scripts in this example for more details.

docs/app/docs/devbox_examples/stacks/lapp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This example shows how to build a simple application using Apache, PHP, and Post
66

77
[Example Repo](https://github.com/jetpack-io/devbox/tree/main/examples/stacks/lapp-stack)
88

9-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/stacks/lapp-stack)
9+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=lapp-stack)
1010

1111
## How to Run
1212

docs/app/docs/devbox_examples/stacks/lepp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ An example Devbox shell for NGINX, Postgres, and PHP. This example uses Devbox P
77

88
[Example Repo](https://github.com/jetpack-io/devbox/tree/main/examples/stacks/lepp-stack)
99

10-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/stacks/lepp-stack)
10+
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new?template=lepp-stack)
1111

1212
## How to Run
1313

@@ -39,4 +39,4 @@ devbox add postgres php81 php81Extensions.pgsql nginx
3939
```
4040

4141
1. Update `devbox.d/nginx/httpd.conf` to point to the directory with your PHP files. You'll need to update the `root` directive to point to your project folder
42-
2. Follow the instructions above in the How to Run section to initialize your project.
42+
2. Follow the instructions above in the How to Run section to initialize your project.

0 commit comments

Comments
 (0)