Development Guide

June 10, 2025 ยท View on GitHub

Setting Up Development Environment

Prerequisites

  • Go 1.19 or higher
  • Git

Getting Started

  1. Clone the repository:
git clone https://github.com/thewizardshell/froggit.git
cd froggit
  1. Install dependencies:
go mod download
  1. Run the application:
go run main.go

Project Structure

  • main.go: Application entry point
  • internal/: Core packages
  • docs/: Documentation

Building

go build -o froggit

Testing

go test ./...

Contributing

See Contributing Guidelines for details on our code of conduct and process for submitting pull requests.