Skip to content

Commit

Permalink
Overhauled README.md (#9784)
Browse files Browse the repository at this point in the history
no issue

- Significantly improved README.md
- Highlight our cli install
- Nicer formatting of links
- And much, much more...
- use V1 docs links for master
  • Loading branch information
kirrg001 committed Aug 13, 2018
1 parent 8aac74b commit 4554bbc
Showing 1 changed file with 76 additions and 34 deletions.
110 changes: 76 additions & 34 deletions README.md
@@ -1,65 +1,107 @@
<a href="https://github.com/TryGhost/Ghost"><img src="https://cloud.githubusercontent.com/assets/120485/18661790/cf942eda-7f17-11e6-9eb6-9c65bfc2abd8.png" alt="Ghost" /></a>
<a href="https://travis-ci.org/TryGhost/Ghost"><img align="right" src="https://travis-ci.org/TryGhost/Ghost.svg?branch=master" alt="Build status" /></a>
&nbsp;
<p align="center">
<a href="https://ghost.org">
<img src="https://user-images.githubusercontent.com/120485/43974508-b64b2fe8-9cd2-11e8-8e58-707254b8817c.png" width="200px" alt="Ghost" />
</a>
</p>
<h3 align="center">Fiercely independent, professional publishing</h3>
<p align="center">A fully open source, powerful platform for building and running modern publications,<br>
we power serious blogs, magazines and journalism from DuckDuckGo to OpenAI & Sky News.</p>
<hr />
<p align="center">
<a href="https://ghost.org">Ghost.org</a> |
<a href="https://ghost.org/features">Features</a> |
<a href="https://ghost.org/customers">Showcase</a> |
<a href="https://forum.ghost.org">Forum</a> |
<a href="https://docs.ghost.org/v1/docs">Documentation</a> |
<a href="https://docs.ghost.org/v1/docs/contributing">Contributing</a> |
<a href="https://opencollective.com/ghost">Donate</a> |
<a href="https://twitter.com/tryghost">Twitter</a>
<br /><br />
<a href="https://ghost.org">
<img src="https://img.shields.io/badge/downloads-1.3M-brightgreen.svg" alt="Downloads" />
</a>
<a href="https://github.com/TryGhost/Ghost/releases/">
<img src="https://img.shields.io/github/release/TryGhost/Ghost.svg" alt="Latest release" />
</a>
<a href="https://travis-ci.org/TryGhost/Ghost">
<img src="https://travis-ci.org/TryGhost/Ghost.svg?branch=master" alt="Build status" />
</a>
<a href="https://github.com/TryGhost/Ghost/contributors/">
<img src="https://img.shields.io/github/contributors/TryGhost/Ghost.svg" alt="Contributors" />
</a>
<a href="https://opencollective.com/ghost">
<img src="https://opencollective.com/ghost/backers/badge.svg" alt="OpenCollective" />
</a>
</p>

&nbsp;

The project is maintained by a non-profit organisation called the **Ghost Foundation**, along with an amazing group of independent [contributors](https://github.com/TryGhost/Ghost/contributors). We're trying to make publishing software that changes the shape of online journalism.
<br>

- [Ghost.org](https://ghost.org)
- [Supported Node Versions](https://docs.ghost.org/v1/docs/supported-node-versions)
- [Latest Release](https://ghost.org/developers/)
- [Help & Support](https://help.ghost.org/)
- [Theme Docs](https://themes.ghost.org/v1.23.0/)
- [API Docs](https://api.ghost.org/v1.22.0/)
- [Contributing Guide](https://docs.ghost.org/v1/docs/contributing)
- [Developer Blog](https://blog.ghost.org)
- [Self-hoster Docs](https://docs.ghost.org/v1/)
<p align="center">
<img src="https://user-images.githubusercontent.com/120485/43994697-62e2bdc2-9d99-11e8-94fc-021ab9756f33.gif" width="800" />
</p>

**NOTE: If you’re stuck, can’t get something working or need some help, please head on over and join our [forum](https://forum.ghost.org/) rather than opening an issue.**
<br>

&nbsp;

![Ghost](https://user-images.githubusercontent.com/120485/28764244-344050c0-75d5-11e7-9314-45bc4177164e.png)
---

&nbsp;

# Hosting a live Ghost site

<a href="https://ghost.org/pricing"><img src="https://cloud.githubusercontent.com/assets/120485/18662071/f30da886-7f18-11e6-90f2-42c0ade79fd1.png" alt="Ghost(Pro)" /></a>
<a href="https://ghost.org/pricing"><img src="https://user-images.githubusercontent.com/120485/43995179-556d7620-9da1-11e8-8410-4b2ba48ea8d0.png" alt="Ghost(Pro)" width="165px" /></a>

The easiest way to deploy Ghost is with our official **[Ghost(Pro)](https://ghost.org/pricing/)** managed service. You can have a fresh instance up and running in a couple of clicks with a worldwide CDN, backups, security and maintenance all done for you.

Not only will it save you hours of maintenance per month, but all revenue goes to the Ghost Foundation, which funds the maintenance and further development of Ghost itself. So you’ll be supporting open source software *and* getting a great service **at the same time**! Talk about win/win. :trophy:
Not only will it save you hours of maintenance per month, but all revenue goes to the Ghost Foundation, which funds the maintenance and further development of Ghost itself. So you’ll be supporting open source software *and* getting a great service! Alternatively if you'd like to support us, we're very grateful to all our backers on [Open Collective](https://opencollective.com/ghost) :heart:

## Self-Hosters
&nbsp;

Other options are also available if you prefer playing around with servers by yourself, of course. The freedom of choice is in your hands.
# Quickstart Install

- [Self-hosting Guide](https://docs.ghost.org/v1/docs/getting-started-guide)
If you want to run your own instance of Ghost, in most cases the best way is to use our **CLI tool**

```
$ npm install ghost-cli -g
```

# Theme Developers
&nbsp;

If you are developing a Ghost theme for your own site or creating themes for others to use we recommend installing Ghost on your own local machine. Luckily we have a brand new Ghost CLI to make this really easy 😄
Then, if installing locally add the `local` flag to get up and running in under a minute - [Local install docs](https://docs.ghost.org/v1/docs/install-local)

- [Installing Ghost via the CLI](https://docs.ghost.org/v1/docs/install-local)
- [Theme Developer Docs](https://themes.ghost.org/v1.23.0/)
```
$ ghost install local
```

&nbsp;

# Contributors & Advanced Developers
or on a server run the full install, including automatic SSL setup using LetsEncrypt - [Production install docs](https://docs.ghost.org/v1/docs/install)

For anyone wishing to contribute to Ghost or to hack/customise core files we recommend following our development setup guides:
```
$ ghost install
```

- [General Contributor Guide](https://docs.ghost.org/v1/docs/contributing)
- [Developer Setup Instructions](https://docs.ghost.org/v1/docs/working-with-ghost)
- [Admin Client development guide](https://docs.ghost.org/v1/docs/working-with-the-admin-client)
&nbsp;

Check out our [official documentation](https://docs.ghost.org/v1/docs) for more information about our [recommended hosting stack](https://docs.ghost.org/v1/docs/hosting) & properly [upgrading Ghost](https://docs.ghost.org/v1/docs/upgrade), plus everything you need to develop your own Ghost [themes](https://themes.ghost.org/v1.25.0/docs) or work with [our API](https://api.ghost.org/v1.22.0/docs).

# Staying Up to Date
&nbsp;


# Getting Help

You can find answers to a huge variety of questions, along with a large community of helpful developers over on the [Ghost forum](https://forum.ghost.org/) - replies are generally very quick. **Ghost(Pro)** customers also have access to 24/7 email support.

When a new version of Ghost comes out, you'll want to look over these [upgrade instructions](https://docs.ghost.org/v1/docs/upgrade) for what to do next.
To stay up to date with all the latest news and product updates, make sure you [subscribe to our blog](https://blog.ghost.org) — or your can always follow us [on Twitter](https://twitter.com/tryghost/), if you prefer your updates bite-sized and facetious. :saxophone::turtle:

You can talk to other Ghost users and developers in our [forum](https://forum.ghost.org/) (it's pretty awesome).
&nbsp;


# Contributors & Advanced Developers

New releases are announced on the [dev blog](https://blog.ghost.org/tag/releases/). You can subscribe by email or follow [@TryGhost_Dev](https://twitter.com/tryghost_dev) on Twitter, if you prefer your updates bite-sized and facetious. :saxophone::turtle:
For anyone wishing to contribute to Ghost or to hack/customise core files we recommend following our full development setup guides: [General Contributor Guide](https://docs.ghost.org/v1/docs/contributing) | [Developer Setup Instructions](https://docs.ghost.org/v1/docs/working-with-ghost) | [Admin Client development guide](https://docs.ghost.org/v1/docs/working-with-the-admin-client)

&nbsp;

Expand Down

0 comments on commit 4554bbc

Please sign in to comment.