Skip to content

Commit 5b7be1a

Browse files
committed
Fixing the capitalization
In WP we call it capital_P_dangit().
1 parent 7cd5910 commit 5b7be1a

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

README.markdown

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Heroku buildpack: Wordpress on Heroku
1+
# Heroku buildpack: WordPress on Heroku
22

3-
### This is a Heroku buildpack for running [Wordpress](http://wordpress.org) on [Heroku](http://heroku.com)
3+
### This is a Heroku buildpack for running [WordPress](http://wordpress.org) on [Heroku](http://heroku.com)
44

5-
It uses this [Wordpress](http://github.com/mchung/wordpress-on-heroku) project template to bootstrap a highly tuned Wordpress site built on the following stack:
5+
It uses this [WordPress](http://github.com/mchung/wordpress-on-heroku) project template to bootstrap a highly tuned WordPress site built on the following stack:
66

77
* `nginx` - Nginx for serving web content. Built specifically for Heroku. [See compile options](https://github.com/mchung/heroku-buildpack-wordpress/blob/master/support/package_nginx).
88
* `php` - PHP-FPM for process management. [See compile options](https://github.com/mchung/heroku-buildpack-wordpress/blob/master/support/package_php).
@@ -11,18 +11,18 @@ It uses this [Wordpress](http://github.com/mchung/wordpress-on-heroku) project t
1111
* `Sendgrid` - Sendgrid for the email backend.
1212
* `MemCachier` - MemCachier for the memcached backend.
1313

14-
You can see a live demo at [Wordpress on Heroku](http://wordpress-on-heroku.herokuapp.com).
14+
You can see a live demo at [WordPress on Heroku](http://wordpress-on-heroku.herokuapp.com).
1515

1616
## Getting started in 60 seconds
1717

18-
Fork and rename the [Wordpress project template](http://github.com/mchung/wordpress-on-heroku).
18+
Fork and rename the [WordPress project template](http://github.com/mchung/wordpress-on-heroku).
1919

2020
Let's clone the repository for a new blog, 99catfacts.com
2121
```bash
2222
$ git clone git://github.com/your_name/wordpress-on-heroku.git 99catfacts.com
2323
```
2424

25-
Create Wordpress on Heroku.
25+
Create WordPress on Heroku.
2626
```bash
2727
$ cd 99catfacts.com
2828
$ heroku create -s cedar
@@ -31,7 +31,7 @@ $ heroku config:add BUILDPACK_URL=https://github.com/mchung/heroku-buildpack-wor
3131

3232
> Don't have the Heroku Toolbelt installed? Follow these [quickstart instructions](https://devcenter.heroku.com/articles/quickstart). Takes about 2 minutes.
3333
34-
Deploy your Wordpress site to Heroku.
34+
Deploy your WordPress site to Heroku.
3535
```bash
3636
$ git push heroku master
3737
...
@@ -48,23 +48,23 @@ $ git push heroku master
4848
-----> Launching... done, v7
4949
```
5050

51-
Open your new Wordpress site in a web browser.
51+
Open your new WordPress site in a web browser.
5252
```bash
5353
$ heroku apps:open
5454
```
5555

56-
> Happy? Add your site to the growing [list of Wordpress sites runnning on Heroku](https://github.com/mchung/heroku-buildpack-wordpress/wiki/Sites-running-Wordpress-on-Heroku).
56+
> Happy? Add your site to the growing [list of WordPress sites runnning on Heroku](https://github.com/mchung/heroku-buildpack-wordpress/wiki/Sites-running-Wordpress-on-Heroku).
5757
5858
## Overview
5959

60-
The buildpack bootstraps a Wordpress site using the [mchung/wordpress-on-heroku](http://github.com/mchung/wordpress-on-heroku) project template. That repo contains everything required to run your own Wordpress site on Heroku.
60+
The buildpack bootstraps a WordPress site using the [mchung/wordpress-on-heroku](http://github.com/mchung/wordpress-on-heroku) project template. That repo contains everything required to run your own WordPress site on Heroku.
6161

62-
There are several files available in `config` for configuring your new Wordpress site.
62+
There are several files available in `config` for configuring your new WordPress site.
6363

6464
```
6565
└── config # Your config files goes here.
6666
├── public # The public directory
67-
│   └── wp-content # Wordpress themes and plugins
67+
│   └── wp-content # WordPress themes and plugins
6868
│   ├── plugins
6969
│   └── themes
7070
└── vendor # Config files for vendored apps
@@ -74,9 +74,9 @@ There are several files available in `config` for configuring your new Wordpress
7474
└── etc # php.ini & php-fpm.conf
7575
```
7676

77-
When you deploy Wordpress to Heroku, everything in `config` is copied over to Heroku. You can configure your blog by making changes to these files.
77+
When you deploy WordPress to Heroku, everything in `config` is copied over to Heroku. You can configure your blog by making changes to these files.
7878

79-
A few Wordpress environment variables can be controlled via Heroku using `heroku config:set`:
79+
A few WordPress environment variables can be controlled via Heroku using `heroku config:set`:
8080

8181
* `FORCE_SSL_LOGIN`
8282
* `FORCE_SSL_ADMIN`
@@ -87,23 +87,23 @@ A few Wordpress environment variables can be controlled via Heroku using `heroku
8787

8888
> To add a Heroku environment variable: `heroku config:set GOOG_UA_ID=UA=1234777-9`
8989
90-
See `wp-config.php` and documentation from Wordpress for details.
90+
See `wp-config.php` and documentation from WordPress for details.
9191

92-
Enabling and configuring the following Wordpress plugins will also speed up Wordpress on Heroku significantly.
92+
Enabling and configuring the following WordPress plugins will also speed up WordPress on Heroku significantly.
9393

9494
* `heroku-sendgrid` - Configures phpmailer to send SMTP email with Sendgrid.
95-
* `heroku-google-analytics` - Configures Google Analytics to display on your Wordpress site.
95+
* `heroku-google-analytics` - Configures Google Analytics to display on your WordPress site.
9696
* GOOG_UA_ID=UA-9999999
97-
* `wpro` - Configures Wordpress to upload everything to S3.
98-
* `batcache` - Configures Wordpress to use memcached for caching.
97+
* `wpro` - Configures WordPress to upload everything to S3.
98+
* `batcache` - Configures WordPress to use memcached for caching.
9999
* `memcachier` - Use a modern memcached plugin.
100100
* `cloudflare` - OPTIONAL, but very awesome.
101-
* If Cloudflare is installed, the plugin configures Wordpress to play nicely with CloudFlare. It sets the correct IP addresses from visitors and comments, and also protects Wordpress from spammers.
101+
* If Cloudflare is installed, the plugin configures WordPress to play nicely with CloudFlare. It sets the correct IP addresses from visitors and comments, and also protects WordPress from spammers.
102102
* Keep in mind that the free version doesn't support SSL, so you'll need to set both `FORCE_SSL_ADMIN` and `FORCE_SSL_LOGIN` to false in order to login.
103103

104104
## Usage
105105

106-
### Creating your Wordpress site on Heroku
106+
### Creating your WordPress site on Heroku
107107
```bash
108108
$ git clone git://github.com/username/wordpress-on-heroku.git myblog
109109
$ cd myblog
@@ -144,7 +144,7 @@ $ git push heroku master
144144
145145
### Adding custom secret keys to wp-config.php
146146

147-
Use the [Wordpress.org secret-key service](https://api.wordpress.org/secret-key/1.1/salt/) to override the default ones in `wp-config.php`.
147+
Use the [WordPress.org secret-key service](https://api.wordpress.org/secret-key/1.1/salt/) to override the default ones in `wp-config.php`.
148148

149149
### Configuring cron
150150
By default, wp-cron is fired on every page load and scheduled to run jobs like future posts or backups. This buildpack disables wp-cron so that visitors don't have to wait to see the site.
@@ -191,11 +191,11 @@ define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] . '/mywordpress');
191191

192192
### Choosing specific versions of vendored packages
193193

194-
See [VERSIONS](VERSIONS.md) for how to pick specific versions of Nginx, PHP, and Wordpress
194+
See [VERSIONS](VERSIONS.md) for how to pick specific versions of Nginx, PHP, and WordPress
195195

196196
### Workflow (optional)
197197

198-
By keeping your changes separate, it'll be easier to pull in changes from the Wordpress site template.
198+
By keeping your changes separate, it'll be easier to pull in changes from the WordPress site template.
199199

200200
Assign a remote `upstream`
201201
```bash
@@ -228,7 +228,7 @@ Pretty freaking fast.
228228

229229
System setup
230230
* Single Heroku dyno
231-
* Default Wordpress installation
231+
* Default WordPress installation
232232
* Default twentytwelve theme
233233
* Caching turned up
234234
* Cron disabled
@@ -258,7 +258,7 @@ Over 200 page views per second with less than 100ms response time sustained for
258258

259259
[See the WebPageTest report](http://www.webpagetest.org/result/130201_BB_624/)
260260

261-
These tests are periodically rerun on [Wordpress on Heroku](http://wordpress-on-heroku.herokuapp.com).
261+
These tests are periodically rerun on [WordPress on Heroku](http://wordpress-on-heroku.herokuapp.com).
262262

263263
## But doesn't Heroku only run Ruby applications?
264264

@@ -273,15 +273,15 @@ The [ephemeral filesystem](http://devcenter.heroku.com/articles/dyno-isolation)
273273

274274
## Security disclosure
275275

276-
Each time Wordpress is deployed, Heroku will fetch the latest buildpack from GitHub and execute the instructions in `compile` and `deploy`. This buildpack will download the latest precompiled versions of Nginx, PHP, and Wordpress from my personal [S3 bucket](http://heroku-buildpack-wordpress.s3.amazonaws.com) then add in config files from the [`config`](https://github.com/mchung/wordpress-on-heroku/tree/master/config) directory.
276+
Each time WordPress is deployed, Heroku will fetch the latest buildpack from GitHub and execute the instructions in `compile` and `deploy`. This buildpack will download the latest precompiled versions of Nginx, PHP, and WordPress from my personal [S3 bucket](http://heroku-buildpack-wordpress.s3.amazonaws.com) then add in config files from the [`config`](https://github.com/mchung/wordpress-on-heroku/tree/master/config) directory.
277277

278278
## Hacking and Contributing
279279

280280
Not comfortable downloading and running a copy of someone else's PHP or Nginx executables? Not a problem! The `support` directory also contains a handful of compilation and deployment scripts to automate several processes, which are currently used for maintenance and repo management.
281281

282282
* `package_nginx` - Used to compile and upload the latest version of Nginx to S3.
283283
* `package_php` - Used to compile and upload the latest version of PHP to S3.
284-
* `wordup` - Really useful helper script for creating and destroying Wordpress sites.
284+
* `wordup` - Really useful helper script for creating and destroying WordPress sites.
285285

286286
## TODO
287287

@@ -300,7 +300,7 @@ Not comfortable downloading and running a copy of someone else's PHP or Nginx ex
300300

301301
Thanks for reading this all the way through.
302302

303-
If you use this buildpack in production, please update the [list of Wordpress sites running on Heroku](https://github.com/mchung/heroku-buildpack-wordpress/wiki/Sites-running-Wordpress-on-Heroku).
303+
If you use this buildpack in production, please update the [list of WordPress sites running on Heroku](https://github.com/mchung/heroku-buildpack-wordpress/wiki/Sites-running-Wordpress-on-Heroku).
304304

305305
## License
306306

0 commit comments

Comments
 (0)