HiveGrid is built by developers, for developers. Whether you're fixing a bug, adding a feature, or improving docs, every contribution makes a difference.
You don't need to be a developer to contribute. There are many ways to help make HiveGrid better.
Get your local development environment running in 5 steps.
Create your own fork of HiveGrid on GitHub.
Clone your fork and run pnpm install to set up dependencies.
Run docker-compose up and pnpm dev to start the dev environment.
Create a branch, make your changes, and write tests if needed.
Push your branch and open a pull request against main.
# Clone your fork git clone https://github.com/YOUR_USERNAME/hivegrid.git cd hivegrid # Install dependencies pnpm install # Copy environment variables cp .env.example .env # Start infrastructure (PostgreSQL, Redis) docker-compose -f docker-compose-local.yml up -d # Run database migrations cd apps/api && python manage.py migrate && cd ../.. # Start development servers pnpm dev