杜郎俊赏 - dujun.io

开源实例之Nanoblog

nanoblog-example封面
前言 Nanoblog - open source microblog with scheduled posts and Twitter crossposting Nanoblog 是 Go 语言开发的微博程序,特色是可以定时发布、同步自己的 Twitter。 实例地址 http://nanoblog.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Go 1.20 程序 Nanoblog 实例部署 权限要求 具有系统读写权限 已安装 Go 安装程序 仓库地址:https://github.com/nanoblog/nanoblog 下载二进制包,启动后访问网站,按照引导完成安装。启动命令: ./nanoblog --http-host nanoblog.example.com 实例体验 进入实例深度体验 后记 本实例仅供参考,不定期重置数据。 体验更多开...

2023-10-31

开源实例之Go File Microblog

go-file-microblog-example封面
前言 基于 Go 的个人微博客,一个供你闲言碎语的地方 实例地址 http://go-file-microblog.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Go 1.20 数据库 SQLite 3 程序 Go File Microblog 实例部署 权限要求 具有系统读写权限 已安装 Go 已安装 SQLite 安装程序 仓库地址:https://github.com/songquanpeng/microblog Docker 部署 docker run -d --restart always -p 3000:3000 -e MB_USERNAME=admin -e MB_PASSWORD=123456 -e TZ=Asia/Shanghai -v /data:/data justsong/microblog 本地部署 #编译 git clone...

2023-10-30

开源实例之memos

memos-example封面
前言 A privacy-first, lightweight note-taking service. Easily capture and share your great thoughts 本实例是用 memos 搭建的微博社区。 实例地址 http://memos.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Go 1.20、Node.js 16 数据库 SQLite 3 程序 memos 0.16.1 实例部署 权限要求 具有系统读写权限 已安装 Go、Node.js 已安装 SQLite 安装程序 官网地址:https://www.usememos.com 仓库地址:https://github.com/usememos/memos Docker 部署 docker run -d --name memos -p 5230:5230 -v ~...

2023-10-24

开源实例之Vertigo

vertigo-example封面
前言 Vertigo 是 Go 语言编写的极简博客引擎。 实例地址 http://vertigo.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Go 1.20 数据库 SQLite 3 程序 Vertigo 0.3 实例部署 权限要求 具有系统读写权限 已安装 SQLite 安装程序 仓库地址:https://github.com/jhvst/vertigo 下载最新二进制包,执行 ./vertigo 启动,访问网站,按照引导完成安装。 实例体验 进入实例深度体验 后记 本实例仅供参考,不定期重置数据。 体验更多开源实例

2023-10-19

开源实例之EiBlog

eiblog-example封面
前言 EiBlog 是 Go 语言编写的博客系统,后台使用了 Typecho 的样式。 实例地址 http://eiblog.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Go 1.20 数据库 SQLite 3 程序 EiBlog 2.2.9 实例部署 权限要求 具有系统读写权限 已安装 SQLite 安装程序 仓库地址:https://github.com/eiblog/eiblog 下载最新二进制包,执行 ./backend 启动。 实例体验 进入实例深度体验 后记 本实例仅供参考,不定期重置数据。 体验更多开源实例

2023-10-19

开源实例之Sonic

sonic-example封面
前言 Sonic [ˈsɒnɪk], Sonic is a Go Blogging Platform. Simple and Powerful. Sonic [ˈsɒnɪk],Sonic 是一个用Golang开发的博客平台,高效快速。 Sonic means as fast as sound speed. Like its name, sonic is a high-performance blog system developed using golang. Sonic 意为声速的、声音的,正如它的名字一样,sonic 致力于成为最快速的开源博客平台。 实例地址 http://sonic.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Go 1.20 数据库 SQLite 3 程序 Sonic 1.1.2 实例部署 权限要求 具有系统读写权限 已安装...

2023-10-19

开源实例之Go Markdown Blog

go-markdown-blog-example封面
前言 本实例是基于 Go 语言实现的 Markdown 博客系统。 实例地址 http://go-markdown-blog.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Go 1.20 数据库 MariaDB 10.5 缓存 Redis 程序 Go Markdown Blog 1.2 实例部署 权限要求 具有系统读写权限 已安装 Go 已安装 MySQL、Redis 安装程序 仓库地址:https://github.com/convee/goblog #克隆代码 git clone https://github.com/convee/goblog.git cd goblog #将 blog.sql 导入数据库并修改相关配置 vim conf/dev.yml #下载依赖 make dep #编译 make build #运行 http://localh...

2023-10-10

开源实例之GoMD

gomd-example封面
前言 GoMD是一款基于golang的beego框架开发的简洁markdown内容管理程序。数据库基于SQLite,因此无需其他配置,下载即可运行。 实例地址 http://gomd.dujun.eu.org 实例配置 配置 描述 系统 Debian 服务端 Go 1.20 程序 GoMD 实例部署 权限要求 具有系统读写权限 已安装 Go 安装程序 仓库地址:https://gitee.com/xuthus5/GoMD 从仓库下载编译好的 release 包,解压后运行 ./GoMD。 实例体验 进入实例深度体验 后记 本实例仅供参考,不定期重置数据。 体验更多开源实例

2023-09-07

开源实例之Hindsite

hindsite-example封面
前言 Hindsite is a fast, lightweight static website generator. It builds static websites with optional document and tag indexes from Markdown and Rimu source documents. 实例地址 http://hindsite.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Go 1.20 服务器 Nginx 程序 Hindsite 2.0.2 实例部署 权限要求 具有系统读写权限 已安装 Go 已安装 Nginx 安装程序 仓库地址:https://github.com/srackham/hindsite 文档地址:https://srackham.github.io/hindsite #安装 Hindsi...

2023-07-19

开源实例之SiteGen

sitegen-example封面
前言 Sitegen is a simple but flexible static site generator. 实例地址 http://sitegen.dujun.eu.org 实例配置 配置 描述 系统 Debian 开发环境服务端 Go 1.20 服务器 Nginx 程序 SiteGen 0.0.12 数据 altlimit 实例部署 权限要求 具有系统读写权限 已安装 Go 已安装 Nginx 安装程序 程序仓库:https://github.com/altlimit/sitegen 数据仓库:https://github.com/altlimit/website #安装 SiteGen curl -s -S -L https://raw.githubusercontent.com/altlimit/sitegen/master/install.sh | bash #克隆代码...

2023-07-19

分页: 1 2 3 4