mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Update alpha install instructions
This commit is contained in:
parent
69d42feb4f
commit
952fac6be4
1 changed files with 14 additions and 45 deletions
59
README.md
59
README.md
|
@ -17,60 +17,29 @@ The project is maintained by a non-profit organisation called the **Ghost Founda
|
|||
|
||||
|
||||
|
||||
# Quick Start Install
|
||||
# Ghost 1.0-alpha Developer Install
|
||||
|
||||
First, you’ll need **Node.js v4 LTS** or a [supported version](http://support.ghost.org/supported-node-versions/).
|
||||
**Please note:** These are the install instructions for Ghost 1.0-alpha, which is **not** stable. If you're looking for the latest release of Ghost, check out the [stable branch](https://github.com/TryGhost/Ghost/tree/stable) or the [latest release](https://github.com/TryGhost/Ghost/releases).
|
||||
|
||||
1. Download the [latest release](https://ghost.org/developers/) of Ghost
|
||||
1. Unzip, and fire up terminal
|
||||
1. `npm install --production`
|
||||
1. Start Ghost!
|
||||
- Local environment: `npm start`
|
||||
- On a server: `npm start --production`
|
||||
1. `http://localhost:2368/ghost` :tada:
|
||||
|
||||
More [install docs](http://support.ghost.org/installation/) here in case you get stuck.
|
||||
|
||||
|
||||
|
||||
<a name="getting-started"></a>
|
||||
# Developer Install
|
||||
|
||||
This is for if you want to hack on Ghost core. First, you’ll need **Node.js v4 LTS** or a [supported version](http://support.ghost.org/supported-node-versions/). Then:
|
||||
If you get stuck, come say hi over [on slack](https://slack.ghost.org)!
|
||||
|
||||
```bash
|
||||
git clone git://github.com/tryghost/ghost.git
|
||||
cd ghost
|
||||
- clone
|
||||
- npm install
|
||||
- git submodule update --init
|
||||
- cd into core/client
|
||||
- npm install
|
||||
- bower install
|
||||
- cd back
|
||||
- gulp setup
|
||||
- gulp dev
|
||||
```
|
||||
|
||||
Install grunt
|
||||
|
||||
To run tests
|
||||
```bash
|
||||
npm install -g grunt-cli
|
||||
ember test
|
||||
```
|
||||
|
||||
Install Ghost
|
||||
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
Build the things!
|
||||
|
||||
```bash
|
||||
grunt init
|
||||
```
|
||||
|
||||
Start your engines
|
||||
|
||||
```bash
|
||||
grunt dev
|
||||
```
|
||||
|
||||
Congrats! You made it. BTW you can also just `npm install ghost` if you're into that sort of thing. NPM aficionados can also read up on using [Ghost as an NPM module](https://github.com/TryGhost/Ghost/wiki/Using-Ghost-as-an-npm-module). More general [install docs](http://support.ghost.org/installation/) here in case you got stuck.
|
||||
|
||||
|
||||
|
||||
|
||||
# Deploying Ghost
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue