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
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ A simple project scaffolding tool that generates project structures from hsfiles
- Support for local files and remote URLs
- Variable substitution with `{{variable}}` syntax
- Interactive prompts for missing variables
- Verbose output option
- Easy installation and usage

## Installation
Expand All @@ -37,15 +36,15 @@ boil my-project ./templates/basic
boil my-project https://raw.githubusercontent.com/datalek/boil/main/examples/minimal-js

# Using remote runner
curl -fsSL https://raw.githubusercontent.com/datalek/boil/main/remote.sh | bash -s -- my-project https://raw.githubusercontent.com/datalek/boil/main/examples/minimal-js
curl -fsSL https://raw.githubusercontent.com/datalek/boil/main/scripts/remote.sh | bash -s -- my-project https://raw.githubusercontent.com/datalek/boil/main/examples/minimal-js
```

### Remote Runner

For convenience, you can also use the remote runner script:

``` bash
curl -fsSL https://raw.githubusercontent.com/datalek/boil/main/remote.sh | bash -s -- <project-name> <template-path>
curl -fsSL https://raw.githubusercontent.com/datalek/boil/main/scripts/remote.sh | bash -s -- <project-name> <template-path>
```

## Template Format
Expand Down
2 changes: 1 addition & 1 deletion scripts/remote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ curl -sL https://github.com/datalek/boil/releases/latest/download/boil-node-22.t

# Extracting
tar -xzf archive.tgz
npx node boil.cjs "$@"
npx node dist/boil.cjs "$@"