Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Ghost is a free, open, simple blogging platform. Visit the project's website at <http://ghost.org>, or read the docs on <http://support.ghost.org>.

## Ghost version 1.X
## Ghost version 2.X

[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)

Expand Down Expand Up @@ -60,7 +60,7 @@ heroku config:set S3_BUCKET_REGION=us-east-1 --app YOURAPPNAME

### How this works

This repository is a [Node.js](https://nodejs.org) web application that specifies [Ghost as a dependency](https://docs.ghost.org/v1.0.0/docs/using-ghost-as-an-npm-module), and makes a deploy button available.
This repository is a [Node.js](https://nodejs.org) web application that specifies [Ghost as a dependency](https://docs.ghost.org/v2.0.0/docs/using-ghost-as-an-npm-module), and makes a deploy button available.

* Ghost and Casper theme versions are declared in the Node app's [`package.json`](package.json)
* Scales across processor cores in larger dynos via [Node cluster API](https://nodejs.org/dist/latest-v6.x/docs/api/cluster.html)
Expand Down Expand Up @@ -95,7 +95,7 @@ See more about [deploying to Heroku with git](https://devcenter.heroku.com/artic

### Upgrading Ghost

On each deployment, the Heroku Node/npm build process will **auto-upgrade Ghost to the newest 1.x version**. To prevent this behavior, use npm 5+ (or yarn) to create a lockfile.
On each deployment, the Heroku Node/npm build process will **auto-upgrade Ghost to the newest 2.x version**. To prevent this behavior, use npm 5+ (or yarn) to create a lockfile.

```bash
npm install
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"private": true,
"version": "1.25.5",
"dependencies": {
"casper": "github:tryghost/Casper#2.1.9",
"ghost": "^1.25.5",
"ghost-storage-adapter-s3": "^2.3.0",
"mysql": "^2.14.1"
"casper": "github:tryghost/Casper#2.5.1",
"ghost": "^2.1.2",
"ghost-storage-adapter-s3": "^2.5.2",
"mysql": "^2.16.0"
},
"engines": {
"node": "10.x"
Expand Down