Skip to content

Contributing

First off, thanks for taking the time to contribute 🎉!

Setup

Before you do anything, you need to setup a development environment. If you haven't used Git before, I'd highly recommend reading Pro Git (it's 100% free and open source)

  1. Fork this repository

  2. Clone your fork

    bash
    cd /path/to/your/working/directory
    git clone https://github.com/your_username/schooltape
    cd schooltape
  3. Install Bun

    bash
    curl -fsSL https://bun.sh/install | bash
    bash
    curl -fsSL https://bun.sh/install | bash
    powershell
    powershell -c "irm bun.sh/install.ps1 | iex"
  4. Install dependencies

    bash
    bun install
  5. Build the extension

    bash
    bun dev
    bash
    bun dev:firefox

Develop

  1. Open an issue describing your snippet to get your idea approved

  2. Please read the specific guides on how to contribute your own:

  3. Then, how you can submit a pull request to get your changes implemented!

Pull Request

To merge your changes into this repository you can create a pull request (PR).

Here is a handy guide on what a pull request is and how to make one.

Contributing Guidelines

Finally, and importantly, please ensure to follow the styling and contributing guidelines outlined here.

Released under the GPL-3.0 license.