0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-08 02:52:39 -05:00

Updating docs links to point to support.ghost.org

This commit is contained in:
Hannah Wolfe 2014-08-10 23:07:35 +01:00
parent e5771b0b3f
commit 988ca127b6
5 changed files with 13 additions and 13 deletions

View file

@ -158,7 +158,7 @@ repository to allow you to checkout pull requests in the same way as branches:
<a name="documentation"></a>
### Documentation
Ghost's main documentation can be found at [docs.ghost.org](http://docs.ghost.org).
Ghost's documentation can be found at [support.ghost.org](http://support.ghost.org).
The documentation is generated using jekyll, all of the docs are on the gh-pages branch on the GitHub repository.
You can clone the repo, checkout the gh-pages branch, and submit pull requests following
@ -228,7 +228,7 @@ or more of the following:
- **[master](https://github.com/TryGhost/Ghost)** is the bleeding edge development branch. All work on the next
release is here. Do **NOT** use this branch for a production site.
- **[stable](https://github.com/TryGhost/Ghost/tree/stable)** contains the latest release of Ghost. This branch may be used in production.
- **[gh-pages](http://github.com/TryGhost/Ghost/tree/gh-pages)** contains [The Ghost Guide](http://docs.ghost.org) documentation for Getting Started with Ghost.
- **[gh-pages](http://github.com/TryGhost/Ghost/tree/gh-pages)** contains [The Ghost Guide](http://docs.ghost.org) our developer documentation.
## Grunt Toolkit

View file

@ -2,7 +2,7 @@
Ghost is a free, open, simple blogging platform that's available to anyone who wants to use it. Lovingly created and maintained by [John O'Nolan](http://twitter.com/JohnONolan) + [Hannah Wolfe](http://twitter.com/ErisDS) + an amazing group of [contributors](https://github.com/TryGhost/Ghost/contributors).
Visit the project's website at <http://ghost.org> &bull; docs on <http://docs.ghost.org>.
Visit the project's website at <http://ghost.org> &bull; docs on <http://support.ghost.org>.
## Getting Involved
@ -18,7 +18,7 @@ There are **two** main ways to get started with Ghost, take care to use the meth
If you just want to get a Ghost blog running in the fastest time possible, this method is for you.
For detailed instructions for various platforms visit the [Ghost Installation Guide](http://docs.ghost.org/installation/). If you get stuck, help is available on [our support site](http://support.ghost.org/).
For detailed instructions for various platforms visit the [Ghost Installation Guide](http://support.ghost.org/installation/). If you get stuck, help is available on [our support site](http://support.ghost.org/).
1. Install [Node.js](http://nodejs.org) - Ghost requires **Node v0.10.x**
1. Download the latest Ghost package from [Ghost.org](http://ghost.org/download).
@ -29,7 +29,7 @@ For detailed instructions for various platforms visit the [Ghost Installation Gu
1. To start ghost, run `npm start`
1. Visit `http://localhost:2368/` in your web browser or go to `http://localhost:2368/ghost` to log in
Check out the [Documentation](http://docs.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
Check out the [Documentation](http://support.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
@ -50,13 +50,13 @@ Please do **NOT** use the master branch of Ghost in production. If you are using
Full instructions & troubleshooting tips can be found in the [Contributing Guide](https://github.com/TryGhost/Ghost/blob/master/CONTRIBUTING.md) under the heading "[Working on Ghost Core](https://github.com/TryGhost/Ghost/blob/master/CONTRIBUTING.md#working-on-ghost-core)".
Check out the [Documentation](http://docs.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
Check out the [Documentation](http://support.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
If you want to use [Ghost as a NPM module there is a Wiki entry](https://github.com/TryGhost/Ghost/wiki/Using-Ghost-as-an-NPM-module) where you can find instructions on how to get set up.
### Upgrading to The Latest Version
Upgrade instructions are in the [Ghost Guide](http://docs.ghost.org/installation/upgrading/)
Upgrade instructions can be found on the [Ghost Support Site](http://support.ghost.org/how-to-upgrade/)
### Logging in For The First Time

View file

@ -1,6 +1,6 @@
// # Ghost Configuration
// Setup your Ghost install for various environments
// Documentation can be found at http://docs.ghost.org/usage/configuration/
// Documentation can be found at http://support.ghost.org/config/
var path = require('path'),
config;
@ -12,7 +12,7 @@ config = {
url: 'http://my-ghost-blog.com',
// Example mail config
// Visit http://docs.ghost.org/mail for instructions
// Visit http://support.ghost.org/mail for instructions
// ```
// mail: {
// transport: 'SMTP',

View file

@ -230,7 +230,7 @@ authentication = {
errors.logError(
error.message,
"Unable to send welcome email, your blog will continue to function.",
"Please see http://docs.ghost.org/mail/ for instructions on configuring email."
"Please see http://support.ghost.org/mail/ for instructions on configuring email."
);
});

View file

@ -42,7 +42,7 @@ function doFirstRun() {
'Your URL is set to',
'<strong>' + config.url + '</strong>.',
'See <a href="http://docs.ghost.org/">http://docs.ghost.org</a> for instructions.'
'See <a href="http://support.ghost.org/">http://support.ghost.org</a> for instructions.'
];
return api.notifications.add({ notifications: [{
@ -175,7 +175,7 @@ function initNotifications() {
message: [
"Ghost is attempting to use your server's <b>sendmail</b> to send e-mail.",
"It is recommended that you explicitly configure an e-mail service,",
"See <a href=\"http://docs.ghost.org/mail\">http://docs.ghost.org/mail</a> for instructions"
"See <a href=\"http://support.ghost.org/mail\">http://support.ghost.org/mail</a> for instructions"
].join(' ')
}] }, {context: {internal: true}});
}
@ -184,7 +184,7 @@ function initNotifications() {
type: 'warn',
message: [
"Ghost is currently unable to send e-mail.",
"See <a href=\"http://docs.ghost.org/mail\">http://docs.ghost.org/mail</a> for instructions"
"See <a href=\"http://support.ghost.org/mail\">http://support.ghost.org/mail</a> for instructions"
].join(' ')
}] }, {context: {internal: true}});
}