https://github.com/benignware/wp-menu-plus
Enhance menus with buttons and search
https://github.com/benignware/wp-menu-plus
wordpress-plugin
Last synced: 11 months ago
JSON representation
Enhance menus with buttons and search
- Host: GitHub
- URL: https://github.com/benignware/wp-menu-plus
- Owner: benignware
- Created: 2022-03-13T20:03:31.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-08T11:53:56.000Z (over 1 year ago)
- Last Synced: 2025-01-08T12:37:53.212Z (over 1 year ago)
- Topics: wordpress-plugin
- Language: PHP
- Homepage:
- Size: 242 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wp-menu-plus
Enhance menus with buttons and search
## Development
Download [Docker CE](https://www.docker.com/get-docker) for your OS.
### Development Server
Point terminal to your project root and start up the container.
```cli
docker-compose up -d
```
Open your browser at [http://localhost:3010](http://localhost:3010).
Go through Wordpress installation and activate the demo theme.
### Useful commands
#### Startup services
```cli
docker-compose up -d
```
You may omit the `-d`-flag for verbose output.
#### Shutdown services
In order to shutdown services, issue the following command
```cli
docker-compose down
```
#### List containers
```cli
docker-compose ps
```
#### Remove containers
```cli
docker-compose rm
```
#### Open bash
Open bash at wordpress directory
```cli
docker-compose exec wordpress bash
```
#### Update composer dependencies
```cli
docker-compose run composer update
```