https://github.com/rareloop/lumberjack-bedrock-installer
Easily scaffold out a new Lumberjack site on top of Bedrock
https://github.com/rareloop/lumberjack-bedrock-installer
Last synced: 2 months ago
JSON representation
Easily scaffold out a new Lumberjack site on top of Bedrock
- Host: GitHub
- URL: https://github.com/rareloop/lumberjack-bedrock-installer
- Owner: Rareloop
- License: mit
- Created: 2018-06-15T17:24:05.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-23T11:13:40.000Z (over 4 years ago)
- Last Synced: 2024-09-20T02:37:37.536Z (9 months ago)
- Language: PHP
- Size: 24.4 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Installer for a Lumberjack site with Bedrock
## Usage
Install this package globally via Composer:
```
composer global require rareloop/lumberjack-bedrock-installer
```You can then scaffold out a new Lumberjack/Bedrock site using:
```
lumberjack-bedrock new my-site
```The above command will create a folder in your current directory called `my-site` which contains Bedrock with Lumberjack ready to go.
## Options
- `--with-trellis`: Set up the project with [Trellis](https://roots.io/trellis/) for deployment.
- `--with-hatchet`: Also install the [Hatchet CLI](https://github.com/Rareloop/hatchet) tool.## Verbosity
You can control the verbosity of messages output by the the installer.
```bash
# increase the verbosity of messages
lumberjack-bedrock new my-site -v# display all messages, including commands run (useful to debug errors)
lumberjack-bedrock new my-site -vvv
```