Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```