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
ディレクトリのコンテンツを Web サーバーにアップロードするだけです。あるいは、Cloudflare Pages などの静的サイトホスティングサービスを使用することもできます。
好きなように使ってください。