Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
App/emlog (#276)
Browse files Browse the repository at this point in the history
* feat: add emlog to appstore.
emlog authored Aug 2, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent a2c0fad commit ccd5728
Showing 5 changed files with 122 additions and 0 deletions.
32 changes: 32 additions & 0 deletions apps/emlog/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# emlog

emlog是一款轻量级博客及CMS建站系统,致力于打造好用的个人云端内容管理系统。

## 功能简介

* Markdown编辑器
* 多屏幕尺寸适配,兼容pc和移动端设备
* 一键式更换模板,方便快捷打造个性站点
* 支持强大的插件扩展功能,随意选择实用的插件,让你的站点无限可能
* 支持日志URL自定义,链接样式更适合SEO
* 清爽的日志撰写页面、配以自动保存,书写博文更加舒适无忧
* 日志草稿箱功能,方便保存你未完成的日志
* 灵活的侧边栏组件(widgets)管理,轻松组合、自定义你喜欢的组件
* 自定义页面,轻松创建留言板、导航条、个人介绍等页面
* 多人联合撰写,后台轻松管理多个撰写人
* 支持灵活的标签(tag)分类,以及传统分类方式
* 资源(图片、视频、文件)上传和管理
* 上传的图片可以随意直观的嵌入到日志内容里,让你的日志图文并茂
* 站点数据备份/恢复功能

## 文档

[简体中文](https://www.emlog.net/docs/#/install)

## 更新记录

[changelog](https://www.emlog.net/docs/#/changelog)

## 授权协议

发布Emlog软件所依据的许可证是自由软件基金会的GPLv3(或更高版本):[LICENSE](/license.txt)
19 changes: 19 additions & 0 deletions apps/emlog/data.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: emlog
tags:
- 建站
title: 一款轻量级博客及CMS建站系统
type: 建站
description: 一款轻量级博客及CMS建站系统。
additionalProperties:
key: emlog
name: emlog
tags:
- WebSite
shortDescZh: 一款轻量级博客及CMS建站系统
shortDescEn: A lightweight blog and cms site building system
type: website
crossVersionUpdate: true
limit: 0
website: https://www.emlog.net/
github: https://github.com/emlog/emlog
document: https://www.emlog.net/docs/#/
Binary file added apps/emlog/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions apps/emlog/pro-latest-php7.4-apache/data.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
additionalProperties:
formFields:
- default: ""
envKey: PANEL_DB_HOST
key: mysql
labelEn: Database Service
labelZh: 数据库服务
required: true
type: service
- default: emlog
envKey: PANEL_DB_NAME
labelEn: Database
labelZh: 数据库名
random: true
required: true
rule: paramCommon
type: text
- default: emlog
envKey: PANEL_DB_USER
labelEn: Database User
labelZh: 数据库用户
random: true
required: true
rule: paramCommon
type: text
- default: emlog
envKey: PANEL_DB_USER_PASSWORD
labelEn: Database User Password
labelZh: 数据库用户密码
random: true
required: true
rule: paramComplexity
type: password
- default: 80
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: localhost
edit: true
envKey: EMLOG_EXTERNAL_URL
labelEn: site domain
labelZh: 绑定的域名,如 emlog.net ,不带http
required: true
rule: paramExtUrl
type: text
23 changes: 23 additions & 0 deletions apps/emlog/pro-latest-php7.4-apache/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: '3'
services:
emlog:
image: emlog/emlog:pro-latest-php7.4-apache
container_name: ${CONTAINER_NAME}
restart: always
environment:
- EMLOG_DB_HOST=${PANEL_DB_HOST}
- EMLOG_DB_NAME=${PANEL_DB_NAME}
- EMLOG_DB_USER=${PANEL_DB_USER}
- EMLOG_DB_PASSWORD=${PANEL_DB_USER_PASSWORD}
- EMLOG_DOMAIN_NAME=${EMLOG_EXTERNAL_URL}
ports:
- ${PANEL_APP_PORT_HTTP}:80
networks:
- 1panel-network
volumes:
- ./data:/app
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true

0 comments on commit ccd5728

Please sign in to comment.