Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miya0001/wp-instant-setup
WordPress desktop installer
https://github.com/miya0001/wp-instant-setup
Last synced: 2 months ago
JSON representation
WordPress desktop installer
- Host: GitHub
- URL: https://github.com/miya0001/wp-instant-setup
- Owner: miya0001
- Created: 2015-10-16T12:25:38.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-09T21:37:51.000Z (over 7 years ago)
- Last Synced: 2024-10-03T12:38:15.002Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 20.5 KB
- Stars: 35
- Watchers: 9
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WordPress Installer on your desktop.
WordPress development environment with PHP built-in web server + WP-CLI.
## Requires
* OSX
* php 5.4 or later
* MySQL### Recommend
* [Composer](https://getcomposer.org/)
* [Mailcatcher](http://mailcatcher.me/)## Uage
```
$ curl https://.../run.sh | bash -s
```or
```
$ ./run.sh
```### Defaults
* db-user: `root`
* db-pass: (empty)
* db-name: `wpdev`## How to use
```
$ mkdir ~/Desktop/wordpress && cd $_
$ curl https://raw.githubusercontent.com/miya0001/wp-instant-setup/master/run.sh | bash
```Or
```
$ git clone [email protected]:miya0001/wp-instant-setup.git && cd wp-instant-setup
$ ./run.sh
```### For MAMP users
```
$ mkdir ~/Desktop/wordpress && cd $_
$ curl https://raw.githubusercontent.com/miya0001/wp-instant-setup/master/run.sh | bash -s root root
```Or
```
$ git clone [email protected]:miya0001/wp-instant-setup.git && cd wp-instant-setup
$ ./run.sh root root
```## Default Account
* User: `admin`
* Password: `admin`## Advanced Tips
Add alias into your `~/.bash_profile` like following.
```
alias wpserve="curl https://raw.githubusercontent.com/miya0001/wp-instant-setup/master/run.sh | bash -s "
```Then just run:
```
$ wpserve
```