This project uses Hugo, a fast and flexible static site generator. Follow the instructions below to install Hugo, get it running, and deploy your site.
- Go (Hugo is written in Go)
- Git
- Install Hugo:
On macOS:
brew install hugo
On Windows:
choco install hugo -confirm
On Linux:
sudo apt-get install hugo
- Verify the installation:
hugo version
- Clone the repository:
git clone https://github.com/michaelminter/moorberry.net.git
cd moorberry.net
- Run the Hugo server:
hugo server
Open your browser and visit http://localhost:1313
to see your site.
- Build the site:
hugo
The generated files will be in the public/
directory.
- Deploy to your web server:
Copy the contents of the public/
directory to your web server's root directory.
Example using rsync:
rsync -avz public/ user@yourserver:/path/to/webroot
Feel free to contribute to this project by opening issues or submitting pull requests.
Happy building!