Building Hammy from Go

To build the Hammy web server from source, you need to have Go installed on your system. Follow these steps to get started:

Prerequisites

Steps to Build

Clone the Repository:
git clone https://github.com/go-hammy/hammy.git
Navigate to the Project Directory:
cd hammy
Build the Project:
go build .
This command compiles the source code and produces an executable named hammy.
Run the Server:
./hammy
This will start the Hammy server, and it will be ready to serve requests.

Troubleshooting

If you encounter any issues during the build process, ensure that your Go environment is correctly set up and that all dependencies are properly installed.