Skip to content

bottledcode/getswytch.com

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Swytch Landing Page

Marketing website for Swytch - Redis-compatible cache with full durability.

Prerequisites

Install Hugo (extended version required):

# macOS
brew install hugo

# Windows
choco install hugo-extended

# Linux (snap)
snap install hugo --channel=extended

Verify installation:

hugo version
# Should show "extended" in the output

Local Development

Start the development server:

hugo server

Visit http://localhost:1313 to see the site. Changes auto-reload.

Build for Production

Generate the static site:

hugo --minify

Output goes to the public/ directory.

Project Structure

.
├── 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)

Customization

  • Content: Edit hugo.yaml to change headlines, features, and links
  • Styles: Modify static/css/custom.css for styling tweaks
  • Images: Replace files in static/images/

Deployment

The site deploys to GitHub Pages automatically on push to main.

To deploy manually:

hugo --minify
# Upload contents of public/ to your hosting provider

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published