Skip to content

Commit

Permalink
update install script and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
coffee-cup committed Feb 10, 2025
1 parent d94edf6 commit f4dd9e4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
29 changes: 28 additions & 1 deletion docs/src/content/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,31 @@ title: Installation
description: How to install Railpack
---

_todo_
Railpack is available as a CLI tool. The latest release is available [on
GitHub](https://github.com/railwayapp/railpack/releases).

The BuildKit frontend is available as a [Docker image on
GHCR](https://github.com/railwayapp/railpack/pkgs/container/railpack-frontend).

## Curl

Download Nixpacks from GH releases and install automatically

```sh
curl -sSL https://railpack.com/install.sh | bash
```

## GitHub Releases

Go to the [latest release](https://github.com/railwayapp/railpack/releases) and
download the `railpack` binary for your platform.

## From Source

```sh
git clone https://github.com/railwayapp/railpack.git
cd railpack
go build -o railpack

./railpack --help
```
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash

# Repository configuration
REPO_OWNER="coffee-cup"
REPO_NAME="railpack-release-testing"
REPO_OWNER="railwayapp"
REPO_NAME="railpack"
REPO_URL="https://github.com/${REPO_OWNER}/${REPO_NAME}"

help_text="Options
Expand Down

0 comments on commit f4dd9e4

Please sign in to comment.