You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,31 @@ Follow along with the development of Blueprint by [watching live streams](https:
5
5
6
6
_**v0.1 Tagged**: A beta release of Blueprint is now available which supports generating components using `models` definitions._
7
7
8
+
9
+
## Installation
10
+
You can install this package via composer using this command:
11
+
12
+
```sh
13
+
composer require --dev laravel-shift/blueprint
14
+
```
15
+
16
+
The package will automatically register itself.
17
+
18
+
19
+
## Usage
20
+
Blueprint adds an artisan command.
21
+
22
+
```sh
23
+
php artisan blueprint:build [draft]
24
+
25
+
```
26
+
27
+
The `draft` file contains your definition of the components to generate. By default, the `blueprint:build` command automatically loads a `draft.yaml` file.
0 commit comments