This commit is contained in:
2026-04-29 19:08:28 +08:00
parent 823b0d68c7
commit f613ac323d
35 changed files with 420 additions and 0 deletions
+79
View File
@@ -0,0 +1,79 @@
module.exports = {
title: "Jiscuss",
description: 'Jiscuss ,一个简单的、基于JAVA的开源论坛. -- By Yaoyuan',
dest: 'public',
head: [
['link', { rel: 'icon', href: '/favicon.ico' }],
['meta', { name: 'viewport', content: 'width=device-width,initial-scale=1,user-scalable=no' }]
],
theme: 'reco',
themeConfig: {
nav: [
{ text: '首页', link: '/', icon: 'reco-home' },
{ text: '文档', link: '/views/other/guide', icon: 'reco-document' },
{ text: 'Jiscuss Demo', link: 'http://demo.jiscuss.com', icon: 'reco-eye' },
{ text: 'Gitee', link: '/', icon: 'reco-mayun' },
{ text: 'GitHub', link: '/', icon: 'reco-github' },
{ text: 'Contact',
icon: 'reco-message',
items: [
{ text: 'Yaoyuan.io(作者)', link: 'http://www.yaoyuan.io', icon: 'reco-npm' },
{ text: 'GitHub(作者)', link: 'https://github.com/chuyaoyuan', icon: 'reco-github' },
{ text: 'WeChat(作者)', link: 'http://www.chuyaoyuan.com', icon: 'reco-wechat' },
]
}
],
type: 'doc',
// 博客设置
blogConfig: {
// category: {
// location: 2, // 在导航栏菜单中所占的位置,默认2
// text: 'Category' // 默认 “分类”
// },
// tag: {
// location: 3, // 在导航栏菜单中所占的位置,默认3
// text: 'Tag' // 默认 “标签”
// },
},
logo: '/head.png',
// 搜索设置
search: true,
searchMaxSuggestions: 10,
// 自动形成侧边导航
sidebar: 'auto',
// 最后更新时间
lastUpdated: 'Last Updated',
// 作者
author: 'yaoyuan',
// 备案号
record: '备案号',
// 项目开始时间
startYear: '2018'
/**
* 密钥 (if your blog is private)
*/
// keyPage: {
// keys: ['your password'],
// color: '#42b983',
// lineColor: '#42b983'
// },
/**
* valine 设置 (if you need valine comment )
*/
// valineConfig: {
// appId: '...',// your appId
// appKey: '...', // your appKey
// }
},
markdown: {
lineNumbers: true
},
plugins: [
'@vuepress/medium-zoom',
'flowchart'
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

+2
View File
@@ -0,0 +1,2 @@
$accentColor = #424242
$textColor = #232321
+39
View File
@@ -0,0 +1,39 @@
---
home: true
heroImage: /hero.png
footer: MIT Licensed | Copyright © 2018-present Evan You
heroImageStyle: {
maxWidth: '600px',
width: '100%',
display: block,
margin: '9rem auto 2rem',
background: '#fff',
borderRadius: '1rem',
}
isShowTitleInHome: false
actionText: 快速上手 →
actionLink: /views/other/guide
features:
- title: 简洁至上
details: 开发一款看着开心、写着顺手、使用简单的 开源论坛
- title: JAVA 驱动
details: 基于JAVA,使用SpringBoot + H2 Database + Semantic-UI 构建
- title: 持续完善
details: 目前的功能还很简陋,日后会一直持续完善
---
::: tip 介绍
1. 这是一个开源JAVA项目;<br>
2. 项目追求极简;<br>
3. 你可以打开 [Jiscuss Demo](http://demo.jiscuss.com) 来查看效果。
:::
## 安装
**Build**
```bash
hello world
# or
hello JAVA
```
+7
View File
@@ -0,0 +1,7 @@
---
isTimeLine: true
sidebar: false
isComment: false
---
## Time Line
+53
View File
@@ -0,0 +1,53 @@
---
title: jiscuss文档
date: 2019-09-09
---
![vuepress](https://img.shields.io/badge/vuepress-0.14.8-brightgreen.svg)
![leancloud-storage](https://img.shields.io/badge/leancloud--storage-3.10.1-orange.svg)
![valine](https://img.shields.io/badge/valine-1.3.4-blue.svg)
::: tip 介绍
1. 这是一个JAVA项目,旨在简单易用的前提下添加论坛所需的发帖、回帖、用户管理、评论等功能;<br>
2. 项目追求极简;<br>
3. 你可以打开 [Jiscuss Demo](http://demo.jiscuss.com) 来查看效果。
:::
## Use
**Build**
```bash
# 文档后续补充
```
**Server**
```bash
# 文档后续补充
```
## Play Together
### 0.x
`Jiscuss` 是基于 `JAVA` 的论坛项目。
目前基础架构由`SpringBoot ` `SpringJPA ` `H2 Database ` `Semantic-UI ` 等组成。
项目开源不久,很多朋友通过各种联系方式,给到很多好的意见和建议,所以我个人也在积极地更新。
### CLI
还是衷心地希望能有更多的朋友参与进来,更好地去完善它,就是希望能让Jiscuss,功能越完善,使用越来越简单。
## License
[MIT](https://github.com/chuyaoyuan)