Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/cloud_development/maelstrom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ You should also check out the [Fly.io Distributed Systems Challenge](https://fly

## Prerequisites

If you don't already have [Devbox](https://www.jetify.com/devbox/docs/installing_devbox/), you can install it by running the following command:
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:

```bash
curl -s https://get.jetify.com/install.sh | bash
Expand Down
4 changes: 2 additions & 2 deletions examples/stacks/django/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

## How to Use

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

### Setting up the Project

1. Install [Devbox](https://www.jetify.com/devbox/docs/installing_devbox/).
1. Install [Devbox](https://www.jetify.com/docs/devbox/installing-devbox/index).
1. Run `devbox create --template django` to create a new Devbox project in your directory.
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.
1. Copy the requirements.txt and `todo_project` directory into the root folder of your project
Expand Down
2 changes: 1 addition & 1 deletion examples/stacks/jekyll/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Inspired by [This Example](https://litchipi.github.io/nix/2023/01/12/build-jekyl

## How to Use

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

```bash
Expand Down
2 changes: 1 addition & 1 deletion examples/stacks/laravel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This example shows how to build a simple Laravel application backed by MariaDB a

## How to Run

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

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

Expand Down
2 changes: 1 addition & 1 deletion examples/stacks/spring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This example combines Java, Spring Boot, and MySQL to expose a simple REST API.

## How to Run

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

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`
1. You can now start the Spring Boot service by running `devbox run bootRun`. This will start your MySQL service and run the application
Expand Down