Skip to content

Latest commit

 

History

History
71 lines (47 loc) · 1017 Bytes

File metadata and controls

71 lines (47 loc) · 1017 Bytes

Contributing to lancher

Thank you for your interest in contributing to lancher! We welcome contributions of all kinds.

Prerequisites

  • Go 1.22 or higher
  • git

Development Setup

  1. Fork and clone the repository:
git clone https://github.com/YOUR_USERNAME/lancher.git
cd lancher
  1. Create a feature branch:
git checkout -b feature/your-feature-name

Local Development

Build

make build

Run Without Installing

make run ARGS="list"
make run ARGS="create"

Or with Go:

go run ./cmd/lancher list

Test

make test

Install Locally

make install      # Install to ~/.local/bin
make uninstall    # Remove

Submitting Changes

  1. Test your changes: make test && make build
  2. Commit with clear messages
  3. Push to your fork
  4. Open a Pull Request

Questions?

Thank you for contributing!