sveltekit markdown blog
1.0.0
마크다운 파일에서 정적으로 생성되는 간단한 블로그입니다. SvelteKit으로 제작되었습니다.
여기에서 라이브 데모 보기
# Clone the repository
git clone https://github.com/edde746/sveltekit-markdown-blog.git
# Navigate to the project directory
cd sveltekit-markdown-blog
# Install dependencies with pnpm
pnpm install
# Run the development server
pnpm run dev
# Generate the static site
pnpm run build
새 게시물을 추가하려면 posts
디렉터리에 마크다운 파일을 만듭니다. 파일 상단에는 다음과 같은 머리말이 있어야 합니다.
<!--
Title: <title of the post>
Author: <your name here>
Published: <date in YYYY-MM-DD HH:MM format>
Categories: <comma-separated list of categories>
Thumbnail: <url, e.g. images/image.webp then put that image in the static/images folder>
-->
블로그를 배포하려면 build
디렉터리의 콘텐츠를 웹 서버에 업로드하기만 하면 됩니다. 또는 Cloudflare Pages와 같은 정적 사이트 호스팅 서비스를 사용할 수 있습니다.
원하는 대로 사용하세요.