Copy .env-example provided in the project root and create a corresponding .env file.
Fill .env with the required fields.
Compile the application and run the binary.
Contributing:
Fork this repository.
Make all your changes against the main branch in a patch branch.
Run make check to make sure all tests and linting checks pass.
Follow standard golang practices to reduce heap allocations! This is done to ensure that the compiler can inline most of our code for good performance.
Run make allocs to make sure no new allocations are made on the heap that are unecessary.