This repository contains the source code and content for the VerseAI blog, available live at: https://verseaitech.netlify.app/
This blog is built using the Hugo static site generator and the PaperMod theme. Content is written in Markdown.
- Static Site Generator: Hugo (Extended Version)
- Theme: PaperMod
- Content Format: Markdown
- Version Control: Git
- Code Hosting: GitHub
- Deployment & Hosting: Netlify
To run the site locally for development or previewing changes:
- Clone the repository:
git clone https://github.com/rajishere9/VerseAI.git cd VerseAI - Initialize theme submodule:
git submodule update --init --recursive
- Install Hugo (Extended version): Follow the instructions at https://gohugo.io/installation/.
- Run the Hugo development server:
The
hugo server -D
-Dflag includes draft posts. - Open your browser to
http://localhost:1313(or the address provided by Hugo).
This site is automatically deployed via Netlify. Any push to the main branch on GitHub will trigger a new build and deployment.
- Build Command:
hugo --gc --minify - Publish Directory:
public
To add a new blog post:
- Use the Hugo command:
hugo new content posts/your-new-post-title.md
- Edit the newly created Markdown file in the
content/posts/directory. - Fill in the front matter (title, date, description, tags, etc.).
- Set
draft: falsein the front matter when ready to publish. - Commit and push the changes to the
mainbranch. Netlify will handle the deployment.