This repository contains the source code for the Gosuda static website and blog. All content is written in Markdown and automatically processed through CI/CD for translation and deployment.
- golang (1.25+)
- bun
- LLM API Key (for translation features)
# Google Vertex AI (default)
export LOCATION="us-central1"
export PROJECT_ID="your-gcp-project-id"
# Or Google AI Studio
export PROVIDER="aistudio"
export AI_STUDIO_API_KEY="your-key"
# Disable translation
export LLM_INIT="false"
make build
make run
blog/my-new-post.md
---
author: <Your Name>
title: <Post Title>
---
git add blog/my-new-post.md
git commit -m "Add new blog post: my-new-post"
git push origin my-branch