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
1. Run `vagrant up` to start a Vagrant environment.
19
-
2. Run `composer install`
26
+
Change into your directory `cd vagrant-wordpress-dev-environment` directory run the following commands:
20
27
21
-
Install all NPM packages, change your theme directory:
28
+
```sh
29
+
1. vagrant up # start a Vagrant environment.
30
+
2. composer install # install packages for wordpress
31
+
```
22
32
23
-
- cd `wp-content/themes/your-theme`
24
-
- Run `npm install` then `npm run build` to compile all your `SCSS`, and `JS` files
33
+
## Theme Installation
25
34
26
-
## Run
35
+
If you notice after running `vagrant up`, a new folder `wp-content` created in your root project, this is because it symlinked `wp-content` to `wp/wp-content` please don't mess with `wp` directory. So now you can add your own theme to `themes` inside `wp-content` directory.
27
36
28
-
- vagrant up
29
-
- cd wp-content/themes/like-v.6.0
30
-
- npm run start
37
+
## Aylin Starter Theme
38
+
39
+
To get our starter wordpress theme
31
40
32
-
## General notes
41
+
1. change your directory into `cd wp-content/themes/` in your root files.
0 commit comments