Development Setup¶
This guide provides detailed instructions for setting up the Extralit development environment using different approaches, from beginner-friendly options to advanced configurations.
Option 1: GitHub Codespaces (Recommended for Beginners)¶
GitHub Codespaces provides a fully configured development environment with all necessary tools pre-installed, making it the easiest way to get started.
1. Setting Up a Codespace¶
There are two ways to create a Codespace for the Extralit project:
Method A: From Your Fork¶
- Fork the Extralit repository to your GitHub account
- Navigate to your forked repository
- Click the "Code" button
- Select the "Codespaces" tab
- Click "Create codespace on develop" to launch a new development environment
Method B: Using Existing Repository¶
- Go to GitHub Codespaces
- Click "New codespace"
- Select the Extralit repository or enter the repository URL
- Choose the branch (typically "develop")
- Select your preferred machine type
- Click "Create codespace"
The Codespace will automatically: - Install all required development tools - Set up a local Kubernetes cluster - Configure necessary environment variables - Install the Extralit packages in development mode
2. Deploying the Services¶
Once your Codespace is ready:
- Open a terminal in the Codespace and deploy the services using Tilt:
-
Monitor deployment in the Tilt UI at
http://localhost:10350
, which will be automatically forwarded -
If you encounter PV (Persistent Volume) issues, deploy services incrementally:
ENV=dev DOCKER_REPO=localhost:5005 tilt up elasticsearch
ENV=dev DOCKER_REPO=localhost:5005 tilt up main-db
ENV=dev DOCKER_REPO=localhost:5005 tilt up minio
ENV=dev DOCKER_REPO=localhost:5005 tilt up weaviate
ENV=dev DOCKER_REPO=localhost:5005 tilt up
3. Alternative: Start the Development Server Directly¶
If you prefer not to use Tilt, you can start the server directly:
# Check running containers
docker ps
# Start the development server
cd argilla-server
pdm run server-dev
4. Access the Web Interface¶
- Look for port 6900 in the "Ports" tab of your Codespace
- Click on the link to open the Extralit web interface
- Log in with the default credentials:
- Username:
argilla
- Password:
1234
- API Key:
argilla.apikey
5. Development Workflow¶
- Backend Development: Changes to
src/argilla_server/
orsrc/extralit/
are automatically updated while Tilt is running - Frontend Development: For frontend changes:
Development Best Practices¶
Linting and Formatting¶
To maintain a consistent code format, install the pre-commit
hooks to run before each commit automatically.
In addition, run the following scripts to check the code formatting and linting:
Running linting, formatting, and tests
You can run all the checks at once by using the following command:
Documentation Development¶
To contribute to the documentation and generate it locally:
This will start a local server with the documentation site.
Troubleshooting¶
Elasticsearch Issues¶
If you encounter issues with Elasticsearch:
# Check Elasticsearch logs
docker logs elasticsearch-for-extralit
# Ensure Elasticsearch is running
curl http://localhost:9200
Database Migration Failures¶
If database migrations fail:
Frontend Build Issues¶
If you encounter issues with the frontend build:
Persistent Volume & Storage Class Issues¶
When using Kubernetes, persistent volume issues can occur:
- PVs might not be available when services are deployed, especially in kind
clusters
- PVC might bind to incorrect PVs depending on creation order
- For persistent storage issues, check the uncategorized
resource in Tilt
- Sometimes clearing /tmp/kind-volumes/
and restarting the cluster is needed
Deployment Issues¶
Common deployment problems:
- elasticsearch
: Can fail on restart due to data-shard issues
- main-db
Postgres: May fail to remount volumes after redeployment due to password changes
Next Steps¶
After setting up your development environment:
- Create a new project in the UI
- Upload sample documents
- Define extraction schemas
- Run extractions
- Review and annotate data
For more information on using Extralit, see the Quickstart Guide.
For support, join the Extralit Slack channel.