Quickstart ¶
Get a site running in under 5 minutes.
Prerequisites ¶ #
- Go 1.22+ - Install Go
Verify your installation:
go version
Install ¶ #
go install github.com/example/markata-go/cmd/markata-go@latest
Create Your Site ¶ #
mkdir my-site
cd my-site
markata-go config init
markata-go new "Hello World"
This creates:
markata.toml- Site configurationpages/hello-world.md- Your first post
Preview ¶ #
markata-go serve
Open http://localhost:8000 in your browser.
Build ¶ #
markata-go build
Output is written to ./output/.
Next Steps ¶ #
- Getting Started - Full tutorial
- [[configuration-guide|Configuration]] - Customize your site
- [[frontmatter-guide|Frontmatter]] - Content metadata
- [[feeds-guide|Feeds]] - Create archives and RSS
- [[templates-guide|Templates]] - Customize appearance
- [[deployment-guide|Deployment]] - Go live