mirror of
https://github.com/bec-project/bec_widgets.git
synced 2025-07-14 11:41:49 +02:00
27 lines
471 B
Markdown
27 lines
471 B
Markdown
(developer)=
|
|
# Development
|
|
|
|
```{toctree}
|
|
---
|
|
maxdepth: 1
|
|
hidden: true
|
|
---
|
|
reference/
|
|
```
|
|
|
|
To contribute to the development of BEC Widgets, start by setting up the development environment:
|
|
|
|
1. **Clone the Repository**:
|
|
```bash
|
|
git clone https://gitlab.psi.ch/bec/bec-widgets
|
|
cd bec-widgets
|
|
```
|
|
2. **Install in Editable Mode**:
|
|
|
|
Installing the package in editable mode allows you to make changes to the code and test them in real-time.
|
|
```bash
|
|
pip install -e .[dev]
|
|
```
|
|
|
|
|