-
Notifications
You must be signed in to change notification settings - Fork 2
/
config-example.js
88 lines (87 loc) · 2.44 KB
/
config-example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
config = {
title: "Blog",
subtitle: "My blog",
author: "Your Name",
article_per_page: 10,
code_highlight_theme: "atom-one-light",
admins: {
root: "root",
AD1024: "!QAZXSW@#EDC"
},
favicon: null,
enable_live2d: false,
article_cover_count: 19,
db: {
host: "localhost",
port: 3306,
username: "root",
password: "root",
database: "blog",
dialect: "mysql"
},
manage: {
article_pageinate: 10,
user_pageinate: 10,
},
live2d: {
enable_live2d: true,
model: 'Model',
conf: 'model.json',
},
about: {
avatar_url: 'https://avatars1.githubusercontent.com/u/12641212?s=460&v=4',
name: 'AD1024',
introduction: "我系渣渣辉,说话战斗,罩衣自由,提现到手,今晚八点,贪玩蓝月,准时开车",
about_content: '', // store your about description markdown file in views/static/{filename}.md
show_skills: true, // display information below
skills: {
'C++': 3.5,
'C': 4,
'Python3': 5,
'Javascript': 4,
'SML': 3,
'Java': 4,
'HTML': 4,
'Algorithm': 4,
'Nodejs': 3.5,
},
github: 'https://github.com/AD1024',
facebook: null,
twitter: null,
weibo: null,
email: 'ccoderad@gmail.com',
steam: null,
stackoverflow: null,
stackexchange: null,
},
projects:[{
name: 'Blog',
description: 'A common blog system',
url: 'https://github.com/BNDS-Programmers/Blog',
image: '',
stars: 0,
forks: 0
}, {
name: 'Shiyiquan',
description: 'A club management platform for BNDS',
url: 'https://github.com/AD1024/ShiyiquanEvent',
image: '',
stars: 3,
forks: 0,
}, {
name: 'BNDSOJ',
description: 'Online Judge for BNDS Computing Contest class',
url: 'https://github.com/AD1024/BNDSOJ',
image: '',
stars: 3,
forks: 1,
}
],
session_sec: "530ca32adfda2828771cb01a22ae0ab2",
url: 'http://localhost:4000',
passwd_salt: "blog_xxxx",
host: "localhost",
port: 4000,
mode: "dev"
}
module.exports = config