All Projects → go-chinese-site → Dreamgo

go-chinese-site / Dreamgo

Licence: mit
一个新手学习用的博客系统,用 Go 语言实现自己的梦想。

Programming Languages

go
31211 projects - #10 most used programming language

Labels

Projects that are alternatives of or similar to Dreamgo

Mybolg
python+flask做的一个小blog
Stars: ✭ 142 (-10.13%)
Mutual labels:  blog
Flog
A Simple Blog Powered by Flask
Stars: ✭ 150 (-5.06%)
Mutual labels:  blog
Awesome Web You Should Know
🌎awesome web you should know
Stars: ✭ 154 (-2.53%)
Mutual labels:  blog
Hugo Theme Console
A minimal, responsive and light theme for Hugo inspired by Linux console.
Stars: ✭ 143 (-9.49%)
Mutual labels:  blog
Xinglie.github.io
blog
Stars: ✭ 146 (-7.59%)
Mutual labels:  blog
H Blog
js, javascript, blog, typescript, node, koa...
Stars: ✭ 151 (-4.43%)
Mutual labels:  blog
Blog
博客
Stars: ✭ 140 (-11.39%)
Mutual labels:  blog
Laravel Blog Poetry All
Laravel诗词博客-匠心编程,热爱生活。喜欢就 Star 吧
Stars: ✭ 157 (-0.63%)
Mutual labels:  blog
Blog
My Blog & Blog System
Stars: ✭ 148 (-6.33%)
Mutual labels:  blog
Hexo Theme Amazing
Demo: https://removeif.github.io/removeif-demo hexo-theme
Stars: ✭ 154 (-2.53%)
Mutual labels:  blog
Blog
基于SpringBoot搭建的开源个人博客系统,模板引擎使用thymeleaf。项目后台部分采用前后端分离模式开发。前台使用 vue 和 element完成。
Stars: ✭ 143 (-9.49%)
Mutual labels:  blog
Sciblog
A blog made with django designed like a scientific paper written in Latex.
Stars: ✭ 145 (-8.23%)
Mutual labels:  blog
Serendipity
A PHP blog software
Stars: ✭ 151 (-4.43%)
Mutual labels:  blog
Neontsunami Laravel
Source for my website and blog
Stars: ✭ 142 (-10.13%)
Mutual labels:  blog
Gine Blog
Blog = Gatsby + React + Material-UI + Notion + Netlify
Stars: ✭ 156 (-1.27%)
Mutual labels:  blog
Djangoblog
😱一款基于Django和Boostrap框架的个人博客网站源码
Stars: ✭ 142 (-10.13%)
Mutual labels:  blog
Solo Skins
🎨 Solo 博客系统的官方皮肤。
Stars: ✭ 150 (-5.06%)
Mutual labels:  blog
Springboot Blog
SpringBoot+Mybatis+Thymeleaf等技术实现的Java博客系统
Stars: ✭ 158 (+0%)
Mutual labels:  blog
Blog
Stars: ✭ 156 (-1.27%)
Mutual labels:  blog
Sonatanewsbundle
Symfony SonataNewsBundle
Stars: ✭ 153 (-3.16%)
Mutual labels:  blog

dreamgo

Build Status

一个新手学习用的博客系统,用 Go 语言实现自己的梦想。

开发计划

该博客系统计划采用三种方式实现

  1. 不使用框架,直接使用标准库 net/http, branch-std
  2. 使用一些基本的路由库,比如 https://github.com/gorilla/muxhttps://github.com/julienschmidt/httprouter, branch-mux
  3. 使用一个 Web 框架,可能考虑使用 Beego,因为国内貌似用这个的比较多,满足广大 gopher 的要求, branch-beego

开发时间

2017 年 10 月 1 日开始

合作方式

通过 net/http 搭建起来基本的架子后,大家可以以此为基础,加入进来

设计说明

  1. 数据源(存储),支持三种:

    1. 将文章存在 Github Repo 上;
    2. 将文章存入 MySQL 中;
    3. 将文字存入 MongoDB 中;
  2. 支持自定义模板

  3. 通过 yaml 做项目配置

Roadmap

  1. master 分支和 branch-std 分支采用 net/http 方式实现。

    • 目前已实现了如下功能:
      1. 基于 http.ServeMux 的简单封装:route.BlogMux,方便写中间件;
      2. 完成基于 github repo 的首页、归档、文章;
      3. 完成日志功能,在main.go中已实例化,其他地方调用logger := logger.Instance()即可;
      4. tag 列表和 tag 文章列表页
      5. 关于页面
    • 还未实现的功能:(大家可以认领,提 issue 告知要开发哪个或加入 qq 群沟通 195831198)
      1. tag 列表和 tag 文章列表页
      2. 友情链接页;
      3. 关于页面
      4. 基于 mysql、mongodb 的存储实现,通过配置切换存储;
      5. 管理后台;
  2. 使用一些基本的路由库,比如 https://github.com/gorilla/muxhttps://github.com/julienschmidt/httprouter, branch-mux 还未动工;

  3. 使用一个 Web 框架,可能考虑使用 Beego,因为国内貌似用这个的比较多,满足广大 gopher 的要求, branch-beego, 还未动工

Install

要求:Go 1.8 及以上

注:如果你是 Windows,请将 .sh 的脚本改为 .bat

  1. 本项目使用 gvt 作为依赖管理工具,通过 go get github.com/polaris1119/gvt 安装,并将 gvt 放入 PATH 中;
  2. 下载 dreamgo 源码:git clone https://github.com/go-chinese-site/dreamgo,比如下载到 ~/dreamgo 中;
  3. cd ~/dreamgo,执行 ./getpkg.sh;
  4. 执行 ./install.sh
  5. 启动 dreamgo:bin/dreamgo 或 执行 ./run.sh

通过浏览器访问:http://localhost:2017

screenshot1

如何贡献代码

  1. fork,编码,pull request;
  2. 通过一次 pull request 后,会把你加入该项目的协作者中,之后就可以直接在该项目中写代码、push 了。
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].