Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bretterer/wordpress-installer
Files to create a phar for wordpress install
https://github.com/bretterer/wordpress-installer
Last synced: about 1 month ago
JSON representation
Files to create a phar for wordpress install
- Host: GitHub
- URL: https://github.com/bretterer/wordpress-installer
- Owner: bretterer
- Created: 2014-05-07T23:14:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-08T01:45:19.000Z (over 10 years ago)
- Last Synced: 2024-05-01T12:57:11.020Z (9 months ago)
- Language: PHP
- Size: 648 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
WordPress Command Line Interface
================================
___Install
-------This is the codebase used to generate the wordpress.phar file.
You can download the wordpress.phar file with the following.
```bash
wget https://raw.github.com/bretterer/wordpress-installer/master/wordpress.phar
sudo cp wordpress.phar /usr/bin/wordpress
sudo chmod +x /usr/bin/wordpress
```
___Usage
-----
from the terminal, go into the directory you want to build your site in.```bash
cd ~/Sites
```Build a new wordpress site.
```
wordpress new mysite.dev
```
This will create a new wordpress installation at `~/Sites/mysite.dev`Once the installation is done, navigate to the development site and run the install like normal. If you would like to reset the keys to new keys, run the following command from the `mysite.dev` folder
```bash
wordpress keys
```___
Thanks to
---------* Taylor Otwell, creator of Laravel, for the awesome illuminate library.
* Symfony2 Team for the great console component.