Development Setup
This guide will help you set up your development environment for contributing to HyperBEAM.
Prerequisites
Before starting, ensure you have the following installed:
- Ubuntu 22.04 (primary development platform)
- Git
- Erlang/OTP 27
- Rebar3
- Rust (for certain components)
- A code editor (Cursor, VSCode, Emacs, Vim, etc.)
Setting Up Your Development Environment
1. Fork and Clone the Repository
First, fork the HyperBEAM repository on GitHub, then clone your fork:
2. Add the Upstream Remote
Add the original repository as an upstream remote to keep your fork in sync:
3. Install Dependencies
HyperBEAM Core (Erlang) Dependencies
4. Run Tests
Verify that your setup is working correctly by running the tests:
Development Workflow
1. Keep Your Fork Updated
Regularly sync your fork with the upstream repository:
2. Create a Feature Branch
Create a branch for each feature or bugfix:
or
3. Development Cycle
The typical development cycle is:
- Make changes to the code
- Write tests for your changes
- Run the tests to verify your changes
- Commit your changes
- Push to your fork
- Create a pull request
4. Running HyperBEAM Locally
To run HyperBEAM for development:
Start HyperBEAM
In the Erlang shell:
5. Debugging
Erlang Debugging
You can use the Erlang debugger or add logging:
?event({debug, Variable}).
% or for more context:
?event(module_name, {debug_label, Variable}).
% for more detailed output with explicit information:
?event(module_name, {debug_label, {explicit, Variable}}).
To filter logs for specific modules or files, you can prefix the rebar3 shell command with the HB_PRINT
environment variable, providing a comma-separated list of module or file names:
This will show debug logs only from the specified modules or files, making it easier to focus on relevant information during development and troubleshooting.
Code Editor Setup
VS Code
We recommend the following extensions for VS Code:
- Erlang LS
- erlang
- Erlang/OTP
Common Issues and Solutions
Permission Issues
If you encounter permission issues:
Getting Help
If you need help with your development setup:
- Check existing issues on GitHub
- Ask for help in the Discord channel
- Create a new issue with the "question" label
Next Steps
Once your development environment is set up, check out the Contribution Guidelines for information on how to submit your changes.