Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harryfinn/wp-setup
WordPress development provisioning tool
https://github.com/harryfinn/wp-setup
bash provisioning wordpress
Last synced: about 2 months ago
JSON representation
WordPress development provisioning tool
- Host: GitHub
- URL: https://github.com/harryfinn/wp-setup
- Owner: harryfinn
- Created: 2017-02-09T10:19:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-19T15:16:37.000Z (over 7 years ago)
- Last Synced: 2024-10-14T20:43:39.298Z (3 months ago)
- Topics: bash, provisioning, wordpress
- Language: Shell
- Size: 3.91 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WP Setup
This repo contains a simple bash script designed to help speed up local
WordPress development by leveraging the [WP-CLI](https://wp-cli.org) to perform
common setup instructions such as database creation, WordPress download,
installation & configuration, ready for development.## How to use
Download the `script.sh` file, grant executable permissions and move to suitable
path:```txt
curl -O https://raw.githubusercontent.com/harryfinn/wp-setup/master/script.sh
chmod +x script.sh
sudo mv script.sh /usr/local/bin/wp-setup
```You can now run this tool by running the following command `wp-setup` within
a folder you wish to generate a WordPress instance within, ready for theme
development.## TODO
- [ ] Add error handling for WP-CLI commands
- [ ] Add option to use WP Skeleton repo as theme default Setup
- [ ] Investigate option(s) of use in deployments (might be best kept as a
separate repo/tool)