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
@@ -20,25 +19,16 @@ composer global require jeffreyvanrossum/tailpress-installer
20
19
tailpress new example-theme
21
20
```
22
21
23
-
*If you haven't already, make sure to place the `~/.composer/vendor/bin` directory in your `PATH`so the tailpress executable is found when you run the tailpress command in your terminal.*
22
+
*If the tailpress command is not found, make sure to place Composer's global vendorbinin your `$PATH`([see](#command-tailpress-not-found)).*
24
23
25
-
You can optionally set the theme name.
24
+
Flags you can pass when using the installer:
25
+
- Set a theme name `--name="Example Theme"`
26
+
- Choose your compiler, mix or esbuild: `--compiler="esbuild"`
27
+
- Initialize a git repository `--git`
28
+
- Set the git branch name `--branch="main"`
26
29
27
-
```bash
28
-
tailpress new example-theme --name="Example Theme"
29
-
```
30
-
31
-
By default, TailPress uses Laravel Mix for compiling. Rather use Esbuild?
32
-
33
-
```bash
34
-
tailpress new example-theme --compiler="esbuild"
35
-
```
36
-
37
-
You can also initialize a new Git repository (branch defaults to `main`):
38
-
39
-
```bash
40
-
tailpress new example-theme --name="Example Theme" --git --branch="main"
41
-
```
30
+
If you choose to install WordPress through the installer, these flags might be of interest as well:
31
+
`--dbname`, `--dbuser`, `--dbpass` and `--dbhost`.
42
32
43
33
Once your theme is ready, don't forget to cd into the directory.
44
34
@@ -67,20 +57,30 @@ There are several NPM scripts available. You'll find the full list in the `packa
67
57
| dev | Creates a development build of app.js, app.css and editor-style.css. |
68
58
| watch | Runs several watch scripts concurrently. |
69
59
70
-
## Block editor support
60
+
## Tips
71
61
72
-
TailPress comes with support for the [block editor](https://wordpress.org/support/article/wordpress-editor/).
62
+
### Styling within the block editor
73
63
74
-
A basic setup for `theme.json` is included. This also means that you need to at least use WordPress 5.8. If you wan't to support earlier WordPress versions, you can use an [older version](https://github.com/jeffreyvr/tailpress/tree/0.1.1) of TailPress instead.
64
+
To make the editing experience within the block editor more in line with the front end styling, a `editor-style.css` is generated.
75
65
76
-
CSS-classes for alignment (full, wide etc.) are generated automatically. You can opt-out on this by removing the plugin from the `tailwind.config.js` file.
66
+
### CSSclasses generated by TailPress
77
67
78
-
To make the editing experience within the block editor more in line with the front end styling, a `editor-style.css` is generated.
68
+
CSS classes for alignment (full, wide etc.) are generated automatically. You can opt-out on this by removing the plugin from the `tailwind.config.js` file.
79
69
80
-
### Define theme colors and font sizes
70
+
### Customize colors
81
71
82
72
Several colors and font sizes are defined from the beginning. You can modify them in `theme.json`.
83
73
74
+
### Command `tailpress` not found
75
+
76
+
Make sure to place Composer's global vendor bin directory in your `$PATH` so the `tailpress` executable can be found by your system. This directory exists in different locations based on your operating system; however, some common locations include:
0 commit comments