Marketing website for Swytch - Redis-compatible cache with full durability.
Install Hugo (extended version required):
# macOS
brew install hugo
# Windows
choco install hugo-extended
# Linux (snap)
snap install hugo --channel=extendedVerify installation:
hugo version
# Should show "extended" in the outputStart the development server:
hugo serverVisit http://localhost:1313 to see the site. Changes auto-reload.
Generate the static site:
hugo --minifyOutput goes to the public/ directory.
.
├── hugo.yaml # Site configuration
├── content/ # Markdown content (if any)
├── layouts/
│ └── partials/ # Template overrides
├── static/
│ ├── css/custom.css # Custom styles
│ ├── images/ # Images and icons
│ └── favicon.ico
└── public/ # Generated site (gitignored)
- Content: Edit
hugo.yamlto change headlines, features, and links - Styles: Modify
static/css/custom.cssfor styling tweaks - Images: Replace files in
static/images/
The site deploys to GitHub Pages automatically on push to main.
To deploy manually:
hugo --minify
# Upload contents of public/ to your hosting provider