zoukankan      html  css  js  c++  java
  • window 下如何安装ghost博客

    1、安装nodejs # Node v0.12.x and v4.2+ LTS - supported 我本地安装的是4.2 安装其他版本可能提示系统不兼容

    2、安装mysql

    3、安装bower

    4、安装git

    5、git clone git://github.com/tryghost/ghost.git 

    6、cd ghost

    7、npm install -g grunt-cli

    8、复制ghost根目录下的config.example.js文件,更改文件名为 config.js,我已经根据我的mysql配置了一个config.js,如下

    var path = require('path'),
        config;
    
    config = {
        development: {
            url: 'http://127.0.0.1:2369',
            // Example mail config
            // Visit http://support.ghost.org/mail for instructions
            // ```
             mail: {
                 transport: 'SMTP',
                 options: {
                     service: 'Mailgun',
                     auth: {
                         user: 'postmaster@sandbox52f8195f72d346d9bfbc1314176abcdd.mailgun.org', // mailgun username
                         pass: '25ip4bzyjwo1'  // mailgun password
                     }
                 }
             },
            database: {
                client: 'mysql',
                connection: {
                    host     : '127.0.0.1',
                    user     : 'root',
                    password : '',
                    database : 'ghost',
                    charset  : 'utf8'
                }
            },
            server: {
                host: '127.0.0.1',
                port: '2369'
            },
            logging: true
        },
        // ### Production
        // When running Ghost in the wild, use the production environment.
        // Configure your URL and mail settings here
        production: {
            url: 'http://127.0.0.1:2369',
            database: {
                client: 'mysql',
                connection: {
                    host     : '127.0.0.1',
                    user     : 'root',
                    password : '',
                    database : 'ghost',
                    charset  : 'utf8'
                }
            },
            server: {
                host: '127.0.0.1',
                port: '2369'
            },
            logging: true
        },
    
        // ### Testing pg
        // Used by Travis - Automated testing run through GitHub
        'testing-pg': {
            url: 'http://127.0.0.1:2369',
            database: {
                client: 'pg',
                connection: {
                    host     : '127.0.0.1',
                    user     : 'postgres',
                    password : '',
                    database : 'ghost_testing',
                    charset  : 'utf8'
                }
            },
            server: {
                host: '127.0.0.1',
                port: '2369'
            },
            logging: false
        }
    };
    
    module.exports = config;
    View Code

    9、npm install

    10、grunt init

    11、grunt prod

    12、npm start

    正常情况下node的提示如下图

    打开https://mailgun.com 注册并登陆 我这里用的是谷歌账号注册登陆的

    配置完成后出现下图

    打开链接出现下图

    将login及pass 输入到ghost目录中的config文件里

    打开127.0.0.1:2369/ghost 进入博客目录,你已经可以添加修改博客,邀请朋友加入博客了,这是一篇ghost.js windows环境下的安装入门教程,转载请注明出处

    参考文档 1.http://www.ghostchina.com/useing-mysql-database-with-ghost/

         2.http://support.ghost.org/mail

         3.https://segmentfault.com/a/1190000002947497

  • 相关阅读:
    Unity3d-UI插件EZGUI官方视频教程
    安装安卓模拟器和unity3d插件EZGUI
    NGUI的原理机制:深入剖析UIPanel,UIWidget,UIDrawCall底层原理
    分享我的2014年3月unity3d面试题与参考答案
    WP8持续集成之通过命令行跑单元测试
    深入学习HttpClient(一)扩展额外的功能
    Windows Phone实用教程:利用Blend为程序添加设计时数据
    WP架构设计(一)MVVM回顾
    Windows Phone Unit Test 环境搭建
    Caliburn Micro框架快速上手(WP)
  • 原文地址:https://www.cnblogs.com/c-and-unity/p/5328611.html
Copyright © 2011-2022 走看看