Skip to content

Commit

Permalink
Deployed df4c651 with MkDocs version: 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 24, 2025
0 parents commit 0b16d51
Show file tree
Hide file tree
Showing 1,029 changed files with 1,716,373 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
5,990 changes: 5,990 additions & 0 deletions 404.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mirascope.com
172 changes: 172 additions & 0 deletions CONTRIBUTING/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
# Contributing

## Setting Up Development Environment

We use [uv](https://docs.astral.sh/uv/) as our package and dependency manager.

### Installation

First, install `uv` using the official method:

**macOS and Linux**

```sh
curl -LsSf https://astral.sh/uv/install.sh | sh
```

**Windows**

```powershell
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
```

For more detailed instructions, refer to the [official uv setup guide](https://docs.astral.sh/uv/#getting-started).

### Create a Virtual Environment

After installing `uv`, create a virtual environment for development by running:

```sh
uv sync --all-extras --dev
```

### Pre-commit Setup

To set up pre-commit hooks, run the following command:

```sh
uv run pre-commit install --install-hooks
```

This will ensure that your code is automatically checked and formatted before each commit.

## Development Workflow

1. Search through existing [GitHub Issues](https://github.com/Mirascope/mirascope/issues) to see if what you want to work on has already been added.

- If not, please create a new issue. This will help to reduce duplicated work.

2. For first-time contributors, visit [https://github.com/mirascope/mirascope](https://github.com/Mirascope/mirascope) and "Fork" the repository (see the button in the top right corner).

- You'll need to set up [SSH authentication](https://docs.github.com/en/authentication/connecting-to-github-with-ssh).

- Clone the forked project and point it to the main project:

```shell
git clone https://github.com/<your-username>/mirascope.git
git remote add upstream https://github.com/Mirascope/mirascope.git
```

3. Development.

- Make sure you are in sync with the main repo:

```shell
# for anything that only requires a fix version bump (e.g. bug fixes)
git checkout main
git pull upstream main
# for anything that is "new" and requires at least a minor version bump
git checkout release/vX.Y # replace X with the current major version and Y with the next minor version
git pull upstream release/vX.Y
```

- Create a `git` feature branch with a meaningful name where you will add your contributions.

```shell
git checkout -b meaningful-branch-name
```

- Start coding! commit your changes locally as you work:

```shell
git add mirascope/modified_file.py tests/test_modified_file.py
git commit -m "feat: specific description of changes contained in commit"
```

- Format your code!

```shell
uv run ruff format .
```

- Lint and test your code! From the base directory, run:

```shell
uv run ruff check .
uv run pyright .
```

4. Test!

- Add tests. Tests should be mirrored based on structure of the source.

```bash
| - mirascope
| | - core
| | | - openai
| | | | - ...
| - tests
| | - core
| | | - openai
| | | | - ...
```

- Run tests to make sure nothing is broken

```shell
uv run pytest tests/
```

- Check coverage report

```shell
uv run pytest tests/ --cov=./ --cov-report=html
```

5. Contributions are submitted through [GitHub Pull Requests](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests)

- When you are ready to submit your contribution for review, push your branch:

```shell
git push origin meaningful-branch-name
```

- Open the printed URL to open a PR.
- Fill in a detailed title and description.
- Check box to allow edits from maintainers
- Submit your PR for review. You can do this via Contribute in your fork repo.
- Link the issue you selected or created under "Development"
- We will review your contribution and add any comments to the PR. Commit any updates you make in response to comments and push them to the branch (they will be automatically included in the PR)

### Pull Requests

Please conform to the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification for all PR titles and commits.

## Documentation

We care deeply about maintaining high-quality, up-to-date documentation. This means that all PRs must include corresponding changes to the documentation (if any changes were necessary).

The documentation lives in the [docs/](https://github.com/Mirascope/mirascope/tree/main/docs) directory, which can be built by running `uv run mkdocs serve`.

A few key things to note:

1. We have code examples in the `examples` folder for all code snippets in the documentation, and we maintain snippets for every option (e.g. prompt writing methods, providers, etc.). While this seems unnecessarily cumbersome, these examples operate as tests for type hints because we run `pyright` on all of the examples. When writing documentation that changes existing examples or requires new examples, make sure to properly update the actual code in the `examples/` directory to match the existing structure.
2. The API reference is generated automatically, but things like new modules still need to be included in the `docs/api` structure for generation to work.
3. The `docs/tutorials` are written as Jupyter notebooks that get converted into markdown. This conversion will happen on every save when running the server locally, which can make writing docs slow. We recommend setting `strict: false` and commenting out the `mkdocs-jupyter` plugin in `mkdocs.yml` to skip the conversion.

## Testing

All changes to the codebase must be properly unit tested. If a change requires updating an existing unit test, make sure to think through if the change is breaking.

We use `pytest` as our testing framework. If you haven't worked with it before, take a look at [their docs](https://docs.pytest.org/).
Furthermore, we have a full coverage requirement, so all incoming code must have 100% coverage. This policy ensures that every line of code is run in our tests. However, while achieving full coverage is essential, it is not sufficient on its own. Coverage metrics ensure code execution but do not guarantee correctness under all conditions. Make sure to stress test beyond coverage to reduce bugs.
We use a [Codecov dashboard](https://app.codecov.io/github/Mirascope/mirascope/tree/main) to monitor and track our coverage.
## Formatting and Linting
In an effort to keep the codebase clean and easy to work with, we use `ruff` for formatting and both `ruff` and `pyright` for linting. Before sending any PR for review, make sure to run both `ruff` and `pyright`.
If you are using VS Code, then install the extensions in `.vscode/extensions.json` and the workspace settings should automatically run `ruff` formatting on save and show `ruff` and `pyright` errors.
Loading

0 comments on commit 0b16d51

Please sign in to comment.