V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
爱意满满的作品展示区。
gully
V2EX  ›  分享创造

开源博客系统 ME@deepgully 升级到 1.3

  •  
  •   gully ·
    deepgully · 2014-07-03 17:10:14 +08:00 · 3758 次点击
    这是一个创建于 3578 天前的主题,其中的信息可能已经有所发展或是发生改变。
    Github:
    https://github.com/deepgully/me

    主要更新:
    1. 支持BAE3和SAE
    2. 更新到Bootstrap3
    3. 新增theme支持, 内置16套主题
    4. 支持七牛云存储和镜像存储加速

    Demo on GAE: http://me.deepgully.com
    Demo on BAE: http://deepgully2.duapp.com
    Demo on SAE: http://deepgully.sinaapp.com
    第 1 条附言  ·  2014-07-06 16:05:38 +08:00
    @loading 多谢支持

    加了一个Demo帐号
    user: [email protected]
    passwd: demo
    10 条回复    2014-07-10 12:11:28 +08:00
    RyuZheng
        1
    RyuZheng  
       2014-07-03 17:13:23 +08:00
    不错很好
    Mihuwa
        2
    Mihuwa  
       2014-07-03 20:55:31 +08:00
    很不错。
    da_a
        3
    da_a  
       2014-07-03 23:42:09 +08:00
    好!
    chunchu
        4
    chunchu  
       2014-07-04 00:05:40 +08:00
    不错的博客系统
    woorz
        5
    woorz  
       2014-07-04 10:12:43 +08:00
    没有php的?
    XXOO
        6
    XXOO  
       2014-07-04 14:31:59 +08:00
    vps 可以使用么
    loading
        7
    loading  
       2014-07-05 13:01:21 +08:00
    没测试账号,进不去后台看
    gully
        8
    gully  
    OP
       2014-07-06 15:54:36 +08:00
    @XXOO 没问题, vps上RUNTIME_ENV会自动识别成local, 按照https://github.com/deepgully/me#%E6%9C%AC%E5%9C%B0%E8%B0%83%E8%AF%95bae 更改数据库配置就行了

    默认使用flask自带的服务器, 且开启debug模式

    在index.py最后:

    elif RUNTIME_ENV == "local":
    app.run(debug=True)


    你也可以使用其他WSGI服务器, 如 gevent

    elif RUNTIME_ENV == "local":
    from gevent.wsgi import WSGIServer
    http_server = WSGIServer(('', 80), app, log=None)
    http_server.serve_forever()

    或者 tornado

    elif RUNTIME_ENV == "local":
    from tornado.wsgi import WSGIContainer
    from tornado.httpserver import HTTPServer
    from tornado.ioloop import IOLoop

    http_server = HTTPServer(WSGIContainer(app))
    http_server.listen(80)
    IOLoop.instance().start()
    bullettrain1433
        9
    bullettrain1433  
       2014-07-07 11:50:51 +08:00
    回去试试,很给力啊!!
    ansenlee
        10
    ansenlee  
       2014-07-10 12:11:28 +08:00
    既然做了响应式,为啥不做彻底呢。。。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   897 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 21:21 · PVG 05:21 · LAX 14:21 · JFK 17:21
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.