Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 833 Bytes

DEVELOPMENT.md

File metadata and controls

47 lines (32 loc) · 833 Bytes

Development Guide

This guide provides instructions for setting up a development environment for freeact. Follow these steps to get started with development, testing, and contributing to the project.

Clone the repository:

git clone https://github.com/gradion-ai/freeact.git
cd freeact

Create a new Conda environment and activate it:

conda env create -f environment.yml
conda activate freeact

Install the poetry dynamic versioning plugin:

poetry self add "poetry-dynamic-versioning[plugin]"

Install dependencies with Poetry:

poetry install --with dev --with docs --with eval

Install pre-commit hooks:

invoke precommit-install

Enforce coding conventions (done automatically by pre-commit hooks):

invoke cc

Run tests:

pytest -s tests