apix/CONTRIBUTING.md
Khoa.vo 8741e3b89f
Some checks are pending
CI / build (18.x) (push) Waiting to run
CI / build (20.x) (push) Waiting to run
feat: Initial commit with multi-provider image generation
2026-01-05 13:50:35 +07:00

960 B

Contributing to kv-pix

We welcome contributions to kv-pix!

Getting Started

  1. Fork the repository.
  2. Clone your fork:
    git clone https://github.com/your-username/kv-pix.git
    cd kv-pix
    
  3. Install dependencies:
    npm install
    

Development Flow

  1. Create a new branch for your feature or fix:
    git checkout -b feature/my-new-feature
    
  2. Make your changes.
  3. Run linting to ensure code quality:
    npm run lint
    
  4. (Optional) Run build to check for errors:
    npm run build
    

Commit Guidelines

  • Use clear and descriptive commit messages.
  • Mention relevant issue numbers if applicable.

Pull Requests

  1. Push your branch to GitHub.
  2. Open a Pull Request against the main branch.
  3. Describe your changes and why they are needed.

Thank you for contributing!