Skip to content

Commit a05a337

Browse files
committed
Wordpress to WordPress
1 parent 5b7be1a commit a05a337

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ v0.7
77

88
2013-02-08 Marc Chung <[email protected]>
99

10-
* Changed the Wordpress on Heroku project template. Older blogs deploying
10+
* Changed the WordPress on Heroku project template. Older blogs deploying
1111
against this buildpack will no longer work. Refer to UPGRADING.md.
1212
* Added /app/bin to PATH
1313

README.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ $ git push heroku master
3737
...
3838
-----> Heroku receiving push
3939
-----> Fetching custom git buildpack... done
40-
-----> Wordpress app detected
40+
-----> WordPress app detected
4141
.
4242
[...]
4343
.
4444
-----> Discovering process types
4545
Procfile declares types -> (none)
46-
Default types for Wordpress -> web
46+
Default types for WordPress -> web
4747
-----> Compiled slug size: 33.7MB
4848
-----> Launching... done, v7
4949
```
@@ -53,7 +53,7 @@ Open your new WordPress site in a web browser.
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

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

UPGRADING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
v0.7 introduces a new project template layout. Refer to the README for details.
66

77
Since buildpacks are coupled to project templates, older versions of the
8-
Wordpress on Heroku project template will no longer work with the latest
8+
WordPress on Heroku project template will no longer work with the latest
99
version of the buildpack
1010

1111
There are two ways to fix this.

VERSIONS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ PHP
1313
* 5.4.11 (5.4-stable)
1414
* 5.3.9 (5.3-stable)
1515

16-
Wordpress *downloaded directly* from [Wordpress](http://wordpress.org/download/release-archive/)
16+
WordPress *downloaded directly* from [WordPress](http://wordpress.org/download/release-archive/)
1717
* 3.9.1
1818
* 3.9
1919
* 3.8.2
@@ -24,7 +24,7 @@ Wordpress *downloaded directly* from [Wordpress](http://wordpress.org/download/r
2424
* 3.5.1
2525
* 3.5.0
2626

27-
Configure Wordpress on Heroku to use specific versions of Nginx and PHP
27+
Configure WordPress on Heroku to use specific versions of Nginx and PHP
2828
```bash
2929
$ git clone git://github.com/your_name/wordpress-on-heroku.git mydogblog
3030
$ cd mydogblog
@@ -37,7 +37,7 @@ $ heroku config:set BUILDPACK_URL=https://github.com/mchung/heroku-buildpack-wor
3737
$ git push heroku master
3838
```
3939

40-
Configure existing Wordpress on Heroku to use a specific version of Wordpress
40+
Configure existing WordPress on Heroku to use a specific version of WordPress
4141
```bash
4242
$ cd existing_wp
4343
$ heroku labs:enable user-env-compile

bin/compile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ if [ ! -d ./vendor/php ]; then
7676
curl --silent --max-time 60 --location $PHP_URL | tar xz
7777
fi
7878

79-
# Wordpress
80-
echo "-----> Installing Wordpress v${WORDPRESS_VERSION}"
79+
# WordPress
80+
echo "-----> Installing WordPress v${WORDPRESS_VERSION}"
8181
cd ${BUILD_DIR}
8282
curl --silent --max-time 60 --location $WORDPRESS_URL | tar xz
8383

bin/detect

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Usage: bin/compile <build-dir>
33

44
if [ -f $1/config/public/wp-config.php ]; then
5-
echo "Wordpress"
5+
echo "WordPress"
66
exit 0
77
else
88
exit 1

support/wordup

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ case "$1" in
1818
--create|-c)
1919
instance_name=$2
2020

21-
echo "-----> Installing Wordpress on Heroku"
21+
echo "-----> Installing WordPress on Heroku"
2222
git clone git://github.com/mchung/wordpress-on-heroku.git $instance_name | indent
2323
cd $instance_name
2424

@@ -39,7 +39,7 @@ case "$1" in
3939
--destroy|-d)
4040
instance_name=$2
4141

42-
echo "-----> Uninstalling Wordpress (${instance_name}) :("
42+
echo "-----> Uninstalling WordPress (${instance_name}) :("
4343
heroku destroy --app $instance_name
4444

4545
echo "-----> Your local copy will remain untouched."

support/wordup.markdown

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Wordup automatically sets up Wordpress on Heroku.
1+
# Wordup automatically sets up WordPress on Heroku.
22

3-
Install Wordpress in < 60 seconds.
3+
Install WordPress in < 60 seconds.
44

55
## Who are you?
66

7-
1. Someone who uses Wordpress. Perhaps a developer, which is why you're reading this on GitHub.com
7+
1. Someone who uses WordPress. Perhaps a developer, which is why you're reading this on GitHub.com
88
2. Someone who is comfortable with the command line. Perhaps a developer, which is why you're still reading this.
9-
3. Someone who likes to help their friends get up and running with Wordpress, but hates the setup, security, and ongoing maintenance (cleaning up logs, upgrading instances, locking down Wordpress, performance, etc.)
9+
3. Someone who likes to help their friends get up and running with WordPress, but hates the setup, security, and ongoing maintenance (cleaning up logs, upgrading instances, locking down WordPress, performance, etc.)
1010

1111
## Here's what you get
1212

1313
```
1414
$ time wordup -c new-wordpress-site
15-
-----> Installing Wordpress on Heroku
15+
-----> Installing WordPress on Heroku
1616
Cloning into 'new-wordpress-site'...
1717
remote: Counting objects: 166, done.
1818
remote: Compressing objects: 100% (121/121), done.
@@ -33,15 +33,15 @@ Compressing objects: 100% (121/121), done.
3333
Writing objects: 100% (166/166), 1.04 MiB | 178 KiB/s, done.
3434
Total 166 (delta 37), reused 166 (delta 37)
3535
-----> Fetching custom git buildpack... done
36-
-----> Wordpress app detected
36+
-----> WordPress app detected
3737
-----> Installing Nginx v1.3.11
3838
-----> Installing PHP v5.4.11
39-
-----> Installing Wordpress v3.5.1
39+
-----> Installing WordPress v3.5.1
4040
-----> Writing start.sh script
4141
-----> Done with compile
4242
-----> Discovering process types
4343
Procfile declares types -> (none)
44-
Default types for Wordpress -> web
44+
Default types for WordPress -> web
4545
-----> Compiled slug size: 34.4MB
4646
-----> Launching... done, v7
4747
http://new-wordpress-site.herokuapp.com deployed to Heroku
@@ -61,11 +61,11 @@ sys 0m0.389s
6161

6262
## Example
6363

64-
### Create a Wordpress instance
64+
### Create a WordPress instance
6565

6666
wordup -c new_shiny_wordpress
6767

68-
### Destroy a Wordpress instance
68+
### Destroy a WordPress instance
6969

7070
wordup -d new_shiny_wordpress
7171

@@ -81,6 +81,6 @@ Copy your themes or plugins into `setup/wp-content/plugins` or `setup/wp-content
8181

8282
## Requirements, Gotchas, and Other notes
8383

84-
* Installs Wordpress 3.5.1
84+
* Installs WordPress 3.5.1
8585
* Requires git.
8686
* Requires a Heroku account.

0 commit comments

Comments
 (0)