Skip to content

Commit 75f7e56

Browse files
authored
Fix broken link for 'Installing Devbox' (#2730)
## Summary `Install Devbox` in multiple README files points to https://www.jetify.com/docs/devbox/installing_devbox which throws a 404 error. This PR fix the broken links and updates with the new ones. ## How was it tested? Looking and following the links that were broken ## Community Contribution License All community contributions in this pull request are licensed to the project maintainers under the terms of the [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0). By creating this pull request, I represent that I have the right to license the contributions to the project maintainers under the Apache 2 License as stated in the [Community Contribution License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license). Signed-off-by: Abolfazl Shahbazi <12436063+ashahba@users.noreply.github.com>
1 parent a4afda9 commit 75f7e56

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

examples/cloud_development/maelstrom/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ You should also check out the [Fly.io Distributed Systems Challenge](https://fly
77

88
## Prerequisites
99

10-
If you don't already have [Devbox](https://www.jetify.com/devbox/docs/installing_devbox/), you can install it by running the following command:
10+
If you don't already have [Devbox](https://www.jetify.com/docs/devbox/installing-devbox/index), you can install it by running the following command:
1111

1212
```bash
1313
curl -s https://get.jetify.com/install.sh | bash

examples/stacks/django/README.md

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

66
## How to Use
77

8-
1. Install [Devbox](https://www.jetify.com/devbox/docs/installing_devbox/)
8+
1. Install [Devbox](https://www.jetify.com/docs/devbox/installing-devbox/index)
99
1. Run `devbox shell` to install your packages and run the init_hook. This will activate your virtual environment and install Django.
1010
1. Initialize PostgreSQL with `devbox run initdb`.
1111
1. Start the Postgres service by running `devbox services up postgresql`. You can start it in the background using `devbox services up -b postgresql`.
@@ -16,7 +16,7 @@
1616

1717
### Setting up the Project
1818

19-
1. Install [Devbox](https://www.jetify.com/devbox/docs/installing_devbox/).
19+
1. Install [Devbox](https://www.jetify.com/docs/devbox/installing-devbox/index).
2020
1. Run `devbox create --template django` to create a new Devbox project in your directory.
2121
1. Install Python and PostgreSQL with `devbox install`. This will also install the Devbox plugins for pip (which sets up your .venv directory) and PostgreSQL.
2222
1. Copy the requirements.txt and `todo_project` directory into the root folder of your project

examples/stacks/jekyll/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Inspired by [This Example](https://litchipi.github.io/nix/2023/01/12/build-jekyl
77

88
## How to Use
99

10-
1. Install [Devbox](https://www.jetify.com/devbox/docs/installing_devbox/)
10+
1. Install [Devbox](https://www.jetify.com/docs/devbox/installing-devbox/index)
1111
1. Create a new project with:
1212

1313
```bash

examples/stacks/laravel/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This example shows how to build a simple Laravel application backed by MariaDB a
77

88
## How to Run
99

10-
1. Install [Devbox](https://www.jetify.com/devbox/docs/installing_devbox/)
10+
1. Install [Devbox](https://www.jetify.com/docs/devbox/installing-devbox/index)
1111

1212
1. Create a new Laravel App by running `devbox create --template laravel`. This will create a new Laravel project in your current directory.
1313

examples/stacks/spring/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This example combines Java, Spring Boot, and MySQL to expose a simple REST API.
44

55
## How to Run
66

7-
1. Install [Devbox](https://www.jetify.com/devbox/docs/installing_devbox/)
7+
1. Install [Devbox](https://www.jetify.com/docs/devbox/installing-devbox/index)
88

99
1. Prepare the database by running `devbox run setup_db`. This will create the user and database that Spring expects in `stacks/spring/src/main/resources/application.properties`
1010
1. You can now start the Spring Boot service by running `devbox run bootRun`. This will start your MySQL service and run the application

0 commit comments

Comments
 (0)