This is a simple web application that generates QR codes from text or URLs. It is built with Go, HTMX, and Tailwind CSS.
- Go 1.24 or later
- Clone the repository:
git clone https://github.com/paganotoni/qero.git- Navigate to the project directory:
cd qero- Download the dependencies:
go mod downloadTo run the application in development mode, use the following command:
go tool devThis will start the application on http://localhost:3000. The application will automatically restart when changes are detected in the Go files.
To build the application for production, run the following command:
go build -o bin/app ./cmd/appThis will create a binary file named app in the bin folder.