generated from saicaca/fuwari
-
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
1 parent
6237181
commit 3eddb85
Showing
70 changed files
with
4,737 additions
and
4,263 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 |
---|---|---|
|
@@ -21,3 +21,7 @@ pnpm-debug.log* | |
.DS_Store | ||
|
||
.vercel | ||
|
||
package-lock.json | ||
bun.lockb | ||
yarn.lock |
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 @@ | ||
# 🍥Fuwari | ||
|
||
[Astro](https://astro.build)로 구축된 정적 블로그 템플릿입니다. | ||
|
||
[**🖥️미리보기 (Vercel)**](https://fuwari.vercel.app) / | ||
[**📦Old Hexo Version**](https://github.com/saicaca/hexo-theme-vivia) | ||
|
||
> README 버전: `2024-04-07` | ||
![Preview Image](https://raw.githubusercontent.com/saicaca/resource/main/fuwari/home.png) | ||
|
||
## ✨ 특징 | ||
|
||
- [x] [Astro](https://astro.build) 및 [Tailwind CSS](https://tailwindcss.com)로 구축됨 | ||
- [x] 부드러운 애니메이션 및 페이지 전환 | ||
- [x] 라이트 모드 / 다크 모드 | ||
- [x] 사용자 정의 가능한 테마 색상 및 배너 | ||
- [x] 반응형 디자인 | ||
- [ ] 댓글 | ||
- [x] 검색 | ||
- [ ] 목차 | ||
## 🚀 사용하는 방법 | ||
|
||
1. 이 템플릿에서 [새 저장소를 생성](https://github.com/saicaca/fuwari/generate)하거나 이 저장소를 포크하세요. | ||
2. 블로그를 로컬에서 편집하려면 저장소를 복제하고 `pnpm install` 및 `pnpm add sharp`를 실행하여 종속성을 설치하세요. | ||
- 아직 [pnpm](https://pnpm.io)을 설치하지 않았다면 `npm install -g pnpm`을 실행하여 [pnpm](https://pnpm.io)을 설치하세요. | ||
3. 블로그를 사용자 정의하려면 `src/config.ts` 구성 파일을 편집하세요. | ||
4. `pnpm new-post <filename>`을 실행하여 새 게시물을 만들고 `src/content/posts/`에서 편집하세요. | ||
5. [가이드](https://docs.astro.build/en/guides/deploy/)에 따라 블로그를 Vercel, Netlify, GitHub 페이지 등에 배포하세요. 배포하기 전에 `astro.config.mjs`에서 사이트 구성을 편집해야 합니다. | ||
|
||
## ⚙️ 게시물의 머리말 설정 | ||
|
||
```yaml | ||
--- | ||
title: 내 첫 블로그 게시물 | ||
published: 2023-09-09 | ||
description: 내 새로운 Astro 블로그의 첫 번째 게시물입니다! | ||
image: /images/cover.jpg | ||
tags: [푸, 바, 오] | ||
category: 앞-끝 | ||
draft: false | ||
--- | ||
``` | ||
|
||
## 🧞 명령어 | ||
|
||
모든 명령어는 프로젝트 최상단, 터미널에서 실행됩니다: | ||
|
||
| Command | Action | | ||
|:------------------------------------|:-------------------------------------------------| | ||
| `pnpm install` AND `pnpm add sharp` | 종속성을 설치합니다. | | ||
| `pnpm dev` | `localhost:4321`에서 로컬 개발 서버를 시작합니다. | | ||
| `pnpm build` | `./dist/`에 프로덕션 사이트를 구축합니다. | | ||
| `pnpm preview` | 배포하기 전에 로컬에서 빌드 미리보기 | | ||
| `pnpm new-post <filename>` | 새 게시물 작성 | | ||
| `pnpm astro ...` | `astro add`, `astro check`와 같은 CLI 명령어 실행 | | ||
| `pnpm astro --help` | Astro CLI를 사용하여 도움 받기 | |
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
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 |
---|---|---|
|
@@ -8,58 +8,68 @@ | |
"build": "astro build && pagefind --site dist", | ||
"preview": "astro preview", | ||
"astro": "astro", | ||
"type-check": "tsc --noEmit --isolatedDeclarations", | ||
"new-post": "node scripts/new-post.js", | ||
"format": "biome format --write ./src", | ||
"lint": "biome check --apply ./src" | ||
}, | ||
"dependencies": { | ||
"@astrojs/check": "^0.5.9", | ||
"@astrojs/rss": "^4.0.5", | ||
"@astrojs/sitemap": "^3.1.2", | ||
"@astrojs/svelte": "^5.2.0", | ||
"@astrojs/check": "^0.9.3", | ||
"@astrojs/rss": "^4.0.7", | ||
"@astrojs/sitemap": "^3.1.6", | ||
"@astrojs/svelte": "^5.7.0", | ||
"@astrojs/tailwind": "^5.1.0", | ||
"@fontsource-variable/jetbrains-mono": "^5.0.20", | ||
"@fontsource/roboto": "^5.0.12", | ||
"@iconify-json/bi": "^1.1.23", | ||
"@iconify-json/simple-icons": "^1.1.101", | ||
"@swup/astro": "^1.4.0", | ||
"astro": "^4.4.15", | ||
"astro-compress": "^2.2.15", | ||
"astro-icon": "1.1.0", | ||
"colorjs.io": "^0.5.0", | ||
"@fontsource-variable/jetbrains-mono": "^5.0.22", | ||
"@fontsource/roboto": "^5.0.14", | ||
"@iconify-json/simple-icons": "^1.2.1", | ||
"@swup/astro": "^1.4.1", | ||
"astro": "^4.15.0", | ||
"astro-compress": "^2.3.1", | ||
"astro-icon": "^1.1.1", | ||
"colorjs.io": "^0.5.2", | ||
"hastscript": "^9.0.0", | ||
"markdown-it": "^14.1.0", | ||
"mdast-util-to-string": "^4.0.0", | ||
"overlayscrollbars": "^2.6.1", | ||
"pagefind": "^1.0.4", | ||
"overlayscrollbars": "^2.10.0", | ||
"pagefind": "^1.1.0", | ||
"reading-time": "^1.5.0", | ||
"rehype-autolink-headings": "^7.1.0", | ||
"rehype-components": "^0.3.0", | ||
"rehype-katex": "^7.0.0", | ||
"rehype-katex": "^7.0.1", | ||
"rehype-slug": "^6.0.0", | ||
"remark-directive": "^3.0.0", | ||
"remark-directive-rehype": "^0.4.2", | ||
"remark-math": "^6.0.0", | ||
"sanitize-html": "^2.13.0", | ||
"sharp": "^0.33.3", | ||
"svelte": "^4.2.12", | ||
"tailwindcss": "^3.4.1", | ||
"typescript": "^5.4.2", | ||
"sharp": "^0.33.5", | ||
"svelte": "^4.2.19", | ||
"tailwindcss": "^3.4.10", | ||
"typescript": "^5.5.4", | ||
"unist-util-visit": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
"@astrojs/ts-plugin": "^1.6.0", | ||
"@biomejs/biome": "1.6.1", | ||
"@iconify-json/fa6-brands": "^1.1.18", | ||
"@iconify-json/fa6-regular": "^1.1.18", | ||
"@iconify-json/fa6-solid": "^1.1.20", | ||
"@iconify-json/material-symbols": "^1.1.74", | ||
"@iconify/svelte": "^3.1.6", | ||
"@astrojs/ts-plugin": "^1.10.1", | ||
"@biomejs/biome": "1.8.3", | ||
"@iconify-json/fa6-brands": "^1.1.22", | ||
"@iconify-json/fa6-regular": "^1.1.22", | ||
"@iconify-json/fa6-solid": "^1.1.24", | ||
"@iconify-json/material-symbols": "^1.1.89", | ||
"@iconify/svelte": "^4.0.2", | ||
"@rollup/plugin-yaml": "^4.1.2", | ||
"@tailwindcss/typography": "^0.5.10", | ||
"@types/markdown-it": "^14.0.0", | ||
"@types/mdast": "^4.0.3", | ||
"@types/sanitize-html": "^2.11.0", | ||
"@tailwindcss/typography": "^0.5.15", | ||
"@types/markdown-it": "^14.1.2", | ||
"@types/mdast": "^4.0.4", | ||
"@types/sanitize-html": "^2.13.0", | ||
"photoswipe": "^5.4.4", | ||
"remark-github-admonitions-to-directives": "^1.0.5", | ||
"sass": "^1.77.8", | ||
"stylus": "^0.63.0" | ||
} | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"vite-imagetools": "^6.2.7", | ||
"sharp": "^0.33.0" | ||
} | ||
}, | ||
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e" | ||
} |
Oops, something went wrong.