Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,17 @@ pip install label-studio

### Install for local development

You can run the latest Label Studio version locally without installing the package from pypi.
You can run the latest Label Studio version locally without installing the package from pypi.

1. Configure the frontend

```bash
npm install -g yarn
make frontend-install
make frontend-build
```

2. Configure the backend

```bash
# Install all package dependencies
Expand All @@ -127,6 +137,11 @@ poetry install
# Run database migrations
python label_studio/manage.py migrate
python label_studio/manage.py collectstatic
```

3. Start the server

```bash
# Start the server in development mode at http://localhost:8080
python label_studio/manage.py runserver
```
Expand Down
Loading