Skip to content

Commit

Permalink
feat: more new ipcard style and update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
BIYUEHU committed Feb 24, 2024
1 parent d04bb06 commit d2676ea
Show file tree
Hide file tree
Showing 12 changed files with 282 additions and 2,738 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Docs

on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:

permissions:
contents: write

jobs:
docs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm

- name: Build VitePress site
run: pnpm build

- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v4
with:
repo: biyuehu/hulitool
target_branch: main
build_dir: dist
fqdn: https://tool.hotaru.icu
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ dist-ssr
*.njsproj
*.sln
*.sw?

*.mjs
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
# HULITOOL

![version](https://img.shields.io/github/package-json/v/biyuehu/hulitool)
![license](https://camo.githubusercontent.com/8addc1e46efd92165de0d5fa6d5fd6a3817251a50a45544710ae4eaf486e3fe5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f626979756568752f6b6f746f72692d626f743f636f6c6f723d64656570677265656e)
![stars](https://img.shields.io/github/stars/biyuehu/hulitool)
![commits](https://img.shields.io/github/commit-activity/t/biyuehu/hulitool)
[![wakatime](https://wakatime.com/badge/user/018dc603-712a-4205-a226-d4c9ccd0d02b/project/018dd9da-bcec-4cc8-86fc-bb8b4cace75d.svg)](https://wakatime.com/badge/user/018dc603-712a-4205-a226-d4c9ccd0d02b/project/018dd9da-bcec-4cc8-86fc-bb8b4cace75d)

# HULITOOL

该项目是本人的第一个**Vue+TypeScript+Vite+Pinia**项目实战,主要为了练习一下 Vue 框架开发

HULITOOL 完全为纯前端项目无后端(但用到了不少[HOTARUAPI](https://api.hotaru.icu)接口),因此网站通过**GithubPages**服务运行
该项目是本人的第一个 Vue + TypeScript + Vite + Pinia 项目实践,主要用于 Vue 练手。

- 目前仅有少部分功能仍未实现,稍后也会时不时添加新功能具体查看[TODO](./TODO.md)
- 变动记录: [CHANGELOG](./CHANGELOG.md)
- HULITOOL 完全为纯前端项目无后端(但用到了不少 [HotaruApi](https://api.hotaru.icu) 接口),因此网站部署于 GithubPages 服务
- 目前仅有少部分功能仍未实现,稍后也会时不时添加新功能具体查看 [TODO](./TODO.md)
- [更新日志](./CHANGELOG.md)

## 技术栈&依赖包

Expand All @@ -22,4 +21,4 @@ HULITOOL 完全为纯前端项目无后端(但用到了不少[HOTARUAPI](https:/

---

- 博客: [imlolicon](https://hotaru.icu)
- 博客: [HotaruBlog](https://hotaru.icu)
19 changes: 11 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
<!DOCTYPE html>
<html lang="en">

<head>
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<title>HULI Tool</title>
</head>
</head>

<body class="mdui-drawer-body-left mdui-appbar-with-toolbar mdui-theme-layout-auto mdui-loaded">
<body
class="mdui-drawer-body-left mdui-appbar-with-toolbar mdui-theme-primary-red mdui-theme-accent-yellow mdui-theme-layout-auto mdui-loaded"
>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script src="https://cdn.staticfile.org/mdui/1.0.2/js/mdui.min.js"></script>
</body>

</html>
</body>
</html>
Loading

0 comments on commit d2676ea

Please sign in to comment.