The official website for Codemanufacture - Magento experts.
Built with Hugo and modern CSS (nesting, @layer, custom properties, oklch()).
- Nix with flakes enabled (recommended)
- Or: Hugo extended
# Enter the development shell
nix develop
# Start development server
hugo server# Start Hugo development server
hugo serverThe site will be available at http://localhost:1313.
hugo --minifyThe output will be in the public/ directory.
The site is automatically deployed to AWS S3 via GitHub Actions when pushing to the master branch.
Required GitHub Secrets:
AWS_ACCESS_KEY_IDAWS_SECRET_ACCESS_KEYAWS_REGIONS3_BUCKET_NAME
.
├── archetypes/ # Content templates
├── assets/
│ ├── css/ # Stylesheets (modern CSS)
│ └── js/ # JavaScript
├── content/
│ ├── blog/ # Blog posts
│ └── privacy-policy.md
├── data/
│ ├── authors.json # Author data
│ └── services.json # Services data
├── layouts/
│ ├── _default/ # Default templates
│ ├── blog/ # Blog templates
│ └── partials/ # Reusable partials
├── static/
│ └── images/ # Static images
├── hugo.toml # Hugo configuration
└── flake.nix # Nix configuration
Apache-2.0