Welcome to Vending Mocha! This is a sample post.
You can edit this file or add new Markdown files to the
/posts directory to start blogging.
To create a new Vending Mocha blog, run the following command in your terminal:
npx vending-mocha@latest new <my-blog>
Follow the interactive prompts to set up your blog's configuration.
So you've cloned Vending Mocha. What's next? Here is a quick guide to making it your own.
Open src/site.config.ts and update the following:
export const siteConfig = { title: "My Awesome Blog", // ... }
Add new .md files with frontmatter to
/projects/ to add your projects.
--- title: "My Project" description: "What is it?" link: "https://github.com/..." status: "active" // active, dead, inactive weight: 5 // higher weight projects are displayed first ---
Just add new .md files to /posts/. The
filename becomes the slug (e.g.,
/posts/my-post.md -> /post/my-post).
Enjoy building your new site! 🚀