This is the Hugo-based website for asimi.dev.
# Install dependencies
just bootstrap
# Start development server
just dev
# Create new post
just new-post my-first-post
# Build for production
just buildSee AGENTS.md for detailed development guide and just --list for all available commands.
- Hugo (Extended version recommended) - installed via
just bootstrap - Just task runner (optional but recommended)
just dev # Start dev server with drafts
just build # Build production site
just new-post <name> # Create new post
just clean # Clean build artifactshugo server --buildDrafts # Start dev server
hugo --minify # Build production siteThe dev server will be available at http://localhost:1313/
content/- Markdown content fileslayouts/- HTML templatesstatic/- Static assets (images, CSS, JS)assets/- Assets processed by Hugo Pipesthemes/- Hugo themeshugo.toml- Site configuration
Build and use the development container:
just infrabuild # Build container image
just shell # Run interactive shell in container- Install or create a theme in
themes/ - Add content with
just new-post <name> - Customize layouts and styling
- Configure
hugo.tomlfor your needs