This is my blog. The built output can be seen on naxoc.net.
This site was migrated from Sculpin to Hugo. The old Sculpin repo can be found here. Before Sculpin it was Drupal and maybe other things? Don't remember anymore :-D
# Install Hugo (macOS with Homebrew)
brew install hugo
# Install just (optional but recommended)
brew install just
# Clone the repository
git clone https://github.com/naxoc/naxoc-hugo.git
cd naxoc-hugoStart the Hugo development server with live reload:
just serve
# or if you don't have just installed:
hugo serverThe blog will be available locally at http://localhost:1313
If you have just installed, you can run:
just # List all available commands
just serve # Start development server
just build # Build the site
just publish # Build and deploy to production
just new-post "title" # Create a new blog postSee the justfile for all available commands.
Build and deploy the site via rsync:
just publish
# or if you don't have just installed:
./publish.shMake sure you have SSH access configured for the target server.
The theme is custom-built and lives directly in the layouts/ directory. CSS is in static/css/style.css. No external theme dependencies! No building with npm because ain't nobody got time for that.
Dual licensed:
- Code (templates, CSS, config): MIT License - use it however you want!
- Content (blog posts): CC BY 4.0 - share with attribution
See LICENSE for details.