https://github.com/joanrodas/test-gh-upload
https://github.com/joanrodas/test-gh-upload
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/joanrodas/test-gh-upload
- Owner: joanrodas
- License: gpl-3.0
- Created: 2025-03-15T12:01:46.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-04-01T20:02:28.000Z (about 2 months ago)
- Last Synced: 2025-04-01T21:22:23.374Z (about 2 months ago)
- Language: JavaScript
- Size: 276 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
![]()
[](https://github.com/joanrodas/plubo/stargazers)
Plubo is a really simple WordPress plugin boilerplate created to speed up plugin development.
✔️ Use Blade views and directives from the start\
✔️ Add styles in SCSS\
✔️ JavaScript router lets you add scripts on specific WordPress templates (based on body tags) and on specific shortcode tags
## Getting started


[](https://github.com/joanrodas/plubo/issues)[Read the Docs](https://www.plubo.dev/docs/)
There are 2 options to start using Plubo:
### 1. As a GitHub template
If you intend to use GitHub for your project, your best option is to create a new repo using this one as a template, just clicking the ***Use this template*** button.
When the new repo is ready, you can just clone it, run ``composer install`` and start programming.
> When using Plubo as a template, a pipeline will be executed right after the repo creation, modifiyng the filenames and classes to match your new project name.
The pipeline files will be autoremoved.### 2. With composer
```bash
composer create-project joanrodas/plubo
```> After creating the project, use the plubo-cli to create new classes, libraries and utilities to your project.
## Add new classes with plubo-cli
Install the CLI: https://github.com/joanrodas/plubo-cli/
```bash
plubo-cli add cpt
plubo-cli add fields
plubo-cli add routes
plubo-cli add admin-menus
plubo-cli add ajax
plubo-cli add endpoints
plubo-cli add post-actions
plubo-cli add roles
plubo-cli add shortcodes
plubo-cli add taxonomies
```
## Contributions
[](https://github.com/joanrodas/plubo/issues)
[](https://github.com/joanrodas/plubo/blob/main/LICENSE)Feel free to contribute to the project, suggesting improvements, reporting bugs and coding.