Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 671 Bytes

File metadata and controls

42 lines (33 loc) · 671 Bytes

Development Guide

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.