forked from roots/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Syncing trellis/installing-trellis.md from WordPress at https://roots…
….io/wp (Roots) - wpghs
- Loading branch information
1 parent
883e71b
commit da08d3d
Showing
1 changed file
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,9 +38,21 @@ example.com/ # → Root folder for the project | |
|
||
See a complete working example in the [roots-example-project.com repo](https://github.com/roots/roots-example-project.com). | ||
|
||
1. Create a new project directory: `$ mkdir example.com && cd example.com` | ||
2. Clone Trellis: `$ git clone --depth=1 [email protected]:roots/trellis.git && rm -rf trellis/.git` | ||
3. Clone Bedrock: `$ git clone --depth=1 [email protected]:roots/bedrock.git site && rm -rf site/.git` | ||
4. Install the Ansible Galaxy roles: `$ cd trellis && ansible-galaxy install -r requirements.yml` | ||
1. Create a new project directory: | ||
```plain | ||
$ mkdir example.com && cd example.com | ||
``` | ||
2. Clone Trellis: | ||
```plain | ||
$ git clone --depth=1 [email protected]:roots/trellis.git && rm -rf trellis/.git | ||
``` | ||
3. Clone Bedrock: | ||
```plain | ||
$ git clone --depth=1 [email protected]:roots/bedrock.git site && rm -rf site/.git | ||
``` | ||
4. Install the Ansible Galaxy roles: | ||
```plain | ||
$ cd trellis && ansible-galaxy install -r requirements.yml | ||
``` | ||
|
||
Windows user? [Read the Windows docs](https://roots.io/trellis/docs/windows/) for slightly different installation instructions. VirtualBox is known to have poor performance in Windows — use VMware or [see some possible solutions](https://discourse.roots.io/t/virtualbox-performance-in-windows/3932). |