forked from imsyy/home
-
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
Showing
17 changed files
with
3,628 additions
and
2,836 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
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 = "" | ||
|
||
# 建站日期 | ||
## 若不需要,请设为空即可 | ||
## 请按照 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 = "9379831714" |
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 |
---|---|---|
|
@@ -22,6 +22,14 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
node-version: "18.x" | ||
# 复制环境变量文件 | ||
- name: Copy .env.example | ||
run: | | ||
if (-not (Test-Path .env)) { | ||
Copy-Item .env.example .env | ||
} else { | ||
Write-Host ".env file already exists. Skipping the copy step." | ||
} | ||
# 安装项目依赖 | ||
- name: Install Dependencies | ||
run: npm install | ||
|
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ node_modules | |
dist | ||
dist-ssr | ||
*.local | ||
.env | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
|
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
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
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,57 @@ | ||
// Generated by 'unplugin-auto-import' | ||
export {} | ||
declare global { | ||
const EffectScope: typeof import('vue')['EffectScope'] | ||
const ElMessage: typeof import('element-plus/es')['ElMessage'] | ||
const computed: typeof import('vue')['computed'] | ||
const createApp: typeof import('vue')['createApp'] | ||
const customRef: typeof import('vue')['customRef'] | ||
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent'] | ||
const defineComponent: typeof import('vue')['defineComponent'] | ||
const effectScope: typeof import('vue')['effectScope'] | ||
const getCurrentInstance: typeof import('vue')['getCurrentInstance'] | ||
const getCurrentScope: typeof import('vue')['getCurrentScope'] | ||
const h: typeof import('vue')['h'] | ||
const inject: typeof import('vue')['inject'] | ||
const isProxy: typeof import('vue')['isProxy'] | ||
const isReactive: typeof import('vue')['isReactive'] | ||
const isReadonly: typeof import('vue')['isReadonly'] | ||
const isRef: typeof import('vue')['isRef'] | ||
const markRaw: typeof import('vue')['markRaw'] | ||
const nextTick: typeof import('vue')['nextTick'] | ||
const onActivated: typeof import('vue')['onActivated'] | ||
const onBeforeMount: typeof import('vue')['onBeforeMount'] | ||
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount'] | ||
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate'] | ||
const onDeactivated: typeof import('vue')['onDeactivated'] | ||
const onErrorCaptured: typeof import('vue')['onErrorCaptured'] | ||
const onMounted: typeof import('vue')['onMounted'] | ||
const onRenderTracked: typeof import('vue')['onRenderTracked'] | ||
const onRenderTriggered: typeof import('vue')['onRenderTriggered'] | ||
const onScopeDispose: typeof import('vue')['onScopeDispose'] | ||
const onServerPrefetch: typeof import('vue')['onServerPrefetch'] | ||
const onUnmounted: typeof import('vue')['onUnmounted'] | ||
const onUpdated: typeof import('vue')['onUpdated'] | ||
const provide: typeof import('vue')['provide'] | ||
const reactive: typeof import('vue')['reactive'] | ||
const readonly: typeof import('vue')['readonly'] | ||
const ref: typeof import('vue')['ref'] | ||
const resolveComponent: typeof import('vue')['resolveComponent'] | ||
const resolveDirective: typeof import('vue')['resolveDirective'] | ||
const shallowReactive: typeof import('vue')['shallowReactive'] | ||
const shallowReadonly: typeof import('vue')['shallowReadonly'] | ||
const shallowRef: typeof import('vue')['shallowRef'] | ||
const toRaw: typeof import('vue')['toRaw'] | ||
const toRef: typeof import('vue')['toRef'] | ||
const toRefs: typeof import('vue')['toRefs'] | ||
const triggerRef: typeof import('vue')['triggerRef'] | ||
const unref: typeof import('vue')['unref'] | ||
const useAttrs: typeof import('vue')['useAttrs'] | ||
const useCssModule: typeof import('vue')['useCssModule'] | ||
const useCssVars: typeof import('vue')['useCssVars'] | ||
const useSlots: typeof import('vue')['useSlots'] | ||
const watch: typeof import('vue')['watch'] | ||
const watchEffect: typeof import('vue')['watchEffect'] | ||
const watchPostEffect: typeof import('vue')['watchPostEffect'] | ||
const watchSyncEffect: typeof import('vue')['watchSyncEffect'] | ||
} |
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 @@ | ||
// generated by unplugin-vue-components | ||
// We suggest you to commit this file into source control | ||
// Read more: https://github.com/vuejs/core/pull/3399 | ||
import '@vue/runtime-core' | ||
|
||
export {} | ||
|
||
declare module '@vue/runtime-core' { | ||
export interface GlobalComponents { | ||
Background: typeof import('./src/components/Background.vue')['default'] | ||
ElCard: typeof import('element-plus/es')['ElCard'] | ||
ElCol: typeof import('element-plus/es')['ElCol'] | ||
ElCollapse: typeof import('element-plus/es')['ElCollapse'] | ||
ElCollapseItem: typeof import('element-plus/es')['ElCollapseItem'] | ||
ElProgress: typeof import('element-plus/es')['ElProgress'] | ||
ElRadio: typeof import('element-plus/es')['ElRadio'] | ||
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup'] | ||
ElRow: typeof import('element-plus/es')['ElRow'] | ||
ElSlider: typeof import('element-plus/es')['ElSlider'] | ||
ElSwitch: typeof import('element-plus/es')['ElSwitch'] | ||
ElTooltip: typeof import('element-plus/es')['ElTooltip'] | ||
Footer: typeof import('./src/components/Footer.vue')['default'] | ||
Hitokoto: typeof import('./src/components/Hitokoto.vue')['default'] | ||
Links: typeof import('./src/components/Links.vue')['default'] | ||
Loading: typeof import('./src/components/Loading.vue')['default'] | ||
Message: typeof import('./src/components/Message.vue')['default'] | ||
MoreContent: typeof import('./src/components/MoreContent.vue')['default'] | ||
Music: typeof import('./src/components/Music.vue')['default'] | ||
Player: typeof import('./src/components/Player.vue')['default'] | ||
Set: typeof import('./src/components/Set.vue')['default'] | ||
SocialLinks: typeof import('./src/components/SocialLinks.vue')['default'] | ||
TimeCapsule: typeof import('./src/components/TimeCapsule.vue')['default'] | ||
Weather: typeof import('./src/components/Weather.vue')['default'] | ||
} | ||
} |
Oops, something went wrong.