-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 09aac5d
Showing
93 changed files
with
9,097 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
node_modules | ||
npm-debug.log | ||
Dockerfile* | ||
docker-compose* | ||
.dockerignore | ||
.git | ||
.github | ||
.gitignore | ||
README.md | ||
LICENSE | ||
.vscode | ||
dist | ||
build | ||
images | ||
script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# 站点信息 | ||
VITE_SITE_NAME = "無名の主页" # 名称 | ||
VITE_SITE_ANTHOR = "無名" # 作者 | ||
VITE_SITE_KEYWORDS = "無名,个人主页" # 关键词 | ||
VITE_SITE_DES = "一个默默无闻的主页" # 站点简介 | ||
VITE_SITE_URL = "imsyy.top" # 站点地址 | ||
VITE_SITE_LOGO = "/images/icon/favicon.ico" # 站点主图标 | ||
VITE_SITE_MAIN_LOGO = "/images/icon/logo.png" # 主页图标 | ||
VITE_SITE_APPLE_LOGO = "/images/logo/apple-touch-icon.png" # Apple 端图标 | ||
|
||
# 简介文本 | ||
VITE_DESC_HELLO = "Hello World !" | ||
VITE_DESC_TEXT = "一个建立于 21 世纪的小站,存活于互联网的边缘" | ||
VITE_DESC_HELLO_OTHER = "Oops !" | ||
VITE_DESC_TEXT_OTHER = "哎呀,这都被你发现了( 再点击一次可关闭 )" | ||
|
||
# 社交链接 | ||
## 请在 src/assets/socialLinks.json 文件中配置 | ||
|
||
# 网站链接 | ||
## 请在 src/assets/siteLinks.json 文件中配置 | ||
## 网站链接的图标名称可前往 https://www.xicons.org 自行挑选并在 src/components/Links/index.vue 中引入 | ||
|
||
# 天气 Key | ||
## 请前往 高德开放平台注册 Web服务 Key | ||
## 请注意不是 Web端 (JS API),免费申请,每日上限 5000 次 | ||
## 此处提供的服务可能会超量从而无法访问,请自行申请!请自行申请!请自行申请! | ||
## 若此处设为空则调用 教书先生 API https://api.oioweb.cn/doc/weather/GetWeather | ||
VITE_WEATHER_KEY = "6c13af6fc30868bee488faf2cc652ab4" | ||
|
||
# 建站日期 | ||
## 若不需要,请设为空即可 | ||
## 请按照 YYYY-MM-DD 格式填写或者仅填写年份 YYYY | ||
VITE_SITE_START = "2020-10-24" | ||
|
||
# ICP 备案号 | ||
## 若不需要,请设为空即可 | ||
VITE_SITE_ICP = "豫ICP备2022018134号-1" | ||
|
||
# 歌曲 API 地址 | ||
## 请参照 https://github.com/xizeyoupan/Meting-API#deno-deploy 进行 API 服务部署 | ||
## 此处提供的服务可能会超量从而无法访问,请自行部署 | ||
## 若使用 QQ 音乐歌单,歌曲数量最好不要超出 50 首 | ||
## 备用:https://api.wuenci.com/meting/api/ | ||
VITE_SONG_API = "https://api-meting.imsyy.top/api" | ||
# 歌曲服务器 ( netease-网易云, tencent-qq音乐 ) | ||
VITE_SONG_SERVER = "netease" | ||
# 播放类型 ( song-歌曲, playlist-播放列表, album-专辑, search-搜索, artist-艺术家 ) | ||
VITE_SONG_TYPE = "playlist" | ||
# 播放 ID ( 若无需播放器,请设为空即可 ) | ||
VITE_SONG_ID = "7452421335" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
dist | ||
.gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"extends": ["eslint:recommended", "plugin:vue/vue3-essential"], | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["vue"], | ||
"rules": { | ||
"vue/multi-word-component-names": "off" | ||
}, | ||
"globals": { | ||
"defineProps": true, | ||
"defineEmits": true, | ||
"withDefaults": true, | ||
"h": true, | ||
"vue": true, | ||
"ref": true, | ||
"reactive": true, | ||
"computed": true, | ||
"watch": true, | ||
"provide": true, | ||
"inject": true, | ||
"defineComponent": true, | ||
"onBeforeMount": true, | ||
"onMounted": true, | ||
"onBeforeUnmount": true, | ||
"nextTick": true, | ||
"ElMessage": true, | ||
"$openList": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Encountering an Issue | ||
description: Please provide details about the issue you are encountering | ||
labels: [bug] | ||
body: | ||
- type: input | ||
id: site-url | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Site URL" | ||
placeholder: "Please provide the URL of the site where the issue occurred" | ||
- type: input | ||
id: problem | ||
attributes: | ||
label: "Description of the Issue" | ||
description: "Include any error messages or screenshots if applicable" | ||
placeholder: "Please describe the issue you are encountering" | ||
- type: textarea | ||
id: other | ||
attributes: | ||
label: "Additional Information" | ||
description: "Is there anything else you would like to add?" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: 遇到问题 | ||
description: 请填写遇到的问题的详细信息 | ||
labels: [bug] | ||
body: | ||
- type: input | ||
id: site-url | ||
validations: | ||
required: true | ||
attributes: | ||
label: "站点链接" | ||
placeholder: "请填写你的站点链接" | ||
- type: input | ||
id: problem | ||
attributes: | ||
label: "问题描述" | ||
description: "有错误的话请提供报错截图" | ||
placeholder: "请详细描述一下遇到的问题" | ||
- type: textarea | ||
id: other | ||
attributes: | ||
label: "补充信息" | ||
description: "还需要说些什么吗" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Other Information | ||
description: Any other issues or questions related to usage | ||
labels: [other] | ||
body: | ||
- type: textarea | ||
id: title | ||
attributes: | ||
label: "Description of the Issue" | ||
description: "Please provide a clear description of the issue you are experiencing" | ||
- type: textarea | ||
id: other | ||
attributes: | ||
label: "Additional Information" | ||
description: "Is there any other information you would like to add?" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: 其他信息 | ||
description: 关于使用上的问题 | ||
labels: [other] | ||
body: | ||
- type: textarea | ||
id: title | ||
attributes: | ||
label: "问题描述" | ||
description: "请尽量清晰的描述您遇到的问题" | ||
- type: textarea | ||
id: other | ||
attributes: | ||
label: "补充信息" | ||
description: "有需要补充的信息吗" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Dev 分支推送部署预览 | ||
## 仅部署 Win 端 | ||
name: Build Dev | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
- master | ||
|
||
jobs: | ||
release: | ||
name: Build Website | ||
runs-on: windows-latest | ||
|
||
steps: | ||
# 检出 Git 仓库 | ||
- name: Check out git repository | ||
uses: actions/checkout@v4.1.1 | ||
# 安装 Node.js | ||
- name: Install Node.js | ||
uses: actions/setup-node@v4.0.0 | ||
with: | ||
node-version: "18.x" | ||
# 安装项目依赖 | ||
- name: Install Dependencies | ||
run: npm install | ||
# 构建程序 | ||
- name: Build Website | ||
run: npm run build | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
# 上传构建产物 | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3.1.3 | ||
with: | ||
name: Home | ||
path: dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"extends": [ | ||
"development" | ||
], | ||
"hints": { | ||
"compat-api/html": "off", | ||
"no-protocol-relative-urls": "off", | ||
"compat-api/css": [ | ||
"default", | ||
{ | ||
"ignore": [ | ||
"backdrop-filter" | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/prettierrc", | ||
"singleQuote": false, | ||
"trailingComma": "all", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"printWidth": 100 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["Vue.volar"] | ||
} |
Oops, something went wrong.