Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 851 Bytes

DEVELOPMENT.md

File metadata and controls

47 lines (32 loc) · 851 Bytes

Development Guide

This guide provides instructions for setting up a development environment for freeact-skills. 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-skills.git
cd freeact-skills

Create a new Conda environment and activate it:

conda env create -f environment.yml
conda activate freeact-skills

Install the poetry dynamic versioning plugin:

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

Install dependencies with Poetry:

poetry install --all-extras --with docs

Install pre-commit hooks:

invoke precommit-install

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

invoke cc

Run tests:

pytest -s tests