Hire the top 1% OSS engineers
1,497
stars
2,461
commits
Elixir
primary language
Jul 18, 2026
updated
Hire the top 1% open source engineers.
Learn more »
Website
·
Twitter
·
YouTube
Algora connects companies and developers for full-time and contract work.
This codebase consists of the following:
OSS communities and closed source teams can self-host or join Algora.io to accomplish the following:
| Use with your | Benefit |
|---|---|
| open source community | reward open source contributors & maintainers |
| contractors | manage work and complete outcome based payments |
| job candidates | collaborate on paid projects for interviews |
| teammates | run an internal bounty program for fun and profit |
Algora.io, hosted by Algora Public Benefit Corporation, extends functionalities including:
Algora.io is a complete solution for sourcing, screening, interviewing & onboarding engineers to your team.
| Hiring process | Benefit |
|---|---|
| sourcing | publish jobs to 50K+ developers, access matches |
| screening | auto screen job applicants for OSS contributions |
| interviewing | trial your candidates using bounties & contracts |
| onboarding | contribute-first hires are productive on day 1 |
|
|
|
|
|
|
|
|
|
|
|
|
The easiest way to get up and running is to install and use Docker for running Postgres.
Make sure Docker, Elixir, Erlang and Node.js are all installed on your development machine. You can install Elixir and Erlang/OTP with ASDF from the project root as follows:
asdf plugin add erlangasdf plugin add elixirasdf plugin add pnpmasdf plugin add nodejsasdf installWe also recommend using direnv to load environment variables and entr to watch for file changes.
Clone the repo and go to the project folder
git clone git@github.com:algora-io/algora.git && cd algora
Initialize and load .env
cp .env.example .env && direnv allow .env
Start a container with latest postgres
make postgres
Install and setup dependencies
make install
Start the web server inside IEx
make server
(Optional) Watch for file changes and auto reload IEx shell in a separate terminal
make watch
Some features of Algora rely on external services. If you're not planning on using these features, feel free to skip setting them up.
Register new GitHub app and set
Once you have obtained your client ID and secret, add them to your .env file and run direnv allow .env.
GITHUB_CLIENT_ID=""
GITHUB_CLIENT_SECRET=""
GITHUB_APP_HANDLE=""
GITHUB_APP_ID=""
GITHUB_WEBHOOK_SECRET=""
GITHUB_PRIVATE_KEY=""
Create new Stripe account to obtain your secrets and add them to your .env file.
STRIPE_PUBLISHABLE_KEY=""
STRIPE_SECRET_KEY=""
STRIPE_WEBHOOK_SECRET=""
To host static assets, set up a public bucket on your preferred S3-compatible storage service and add the following credentials to your .env file:
AWS_ENDPOINT_URL_S3=""
AWS_REGION=""
AWS_ACCESS_KEY_ID=""
AWS_SECRET_ACCESS_KEY=""
BUCKET_NAME=""
To receive webhooks from GitHub or Stripe on your local machine, you'll need a way to expose your local server to the internet. The easiest way is to use a service like Cloudflare Tunnel or ngrok.
If you'd like to utilize our Cloudflare Tunnel GenServer to automatically run a tunnel when you start the app, you'll need to set up a named tunnel on your own domain:
cloudflared tunnel login
cloudflared tunnel create local
cloudflared tunnel route dns local http://local.yourdomain.com
And then add it to your .env file:
CLOUDFLARE_TUNNEL="local"
If you're using another service, make sure to start the tunnel manually in another terminal.
Elixir
96.2%
TypeScript
1.6%
HTML
1.1%
Hire the top 1% OSS engineers
1,497
stars
2,461
commits
Elixir
primary language
Jul 18, 2026
updated
Hire the top 1% open source engineers.
Learn more »
Website
·
Twitter
·
YouTube
Algora connects companies and developers for full-time and contract work.
This codebase consists of the following:
OSS communities and closed source teams can self-host or join Algora.io to accomplish the following:
| Use with your | Benefit |
|---|---|
| open source community | reward open source contributors & maintainers |
| contractors | manage work and complete outcome based payments |
| job candidates | collaborate on paid projects for interviews |
| teammates | run an internal bounty program for fun and profit |
Algora.io, hosted by Algora Public Benefit Corporation, extends functionalities including:
Algora.io is a complete solution for sourcing, screening, interviewing & onboarding engineers to your team.
| Hiring process | Benefit |
|---|---|
| sourcing | publish jobs to 50K+ developers, access matches |
| screening | auto screen job applicants for OSS contributions |
| interviewing | trial your candidates using bounties & contracts |
| onboarding | contribute-first hires are productive on day 1 |
|
|
|
|
|
|
|
|
|
|
|
|
The easiest way to get up and running is to install and use Docker for running Postgres.
Make sure Docker, Elixir, Erlang and Node.js are all installed on your development machine. You can install Elixir and Erlang/OTP with ASDF from the project root as follows:
asdf plugin add erlangasdf plugin add elixirasdf plugin add pnpmasdf plugin add nodejsasdf installWe also recommend using direnv to load environment variables and entr to watch for file changes.
Clone the repo and go to the project folder
git clone git@github.com:algora-io/algora.git && cd algora
Initialize and load .env
cp .env.example .env && direnv allow .env
Start a container with latest postgres
make postgres
Install and setup dependencies
make install
Start the web server inside IEx
make server
(Optional) Watch for file changes and auto reload IEx shell in a separate terminal
make watch
Some features of Algora rely on external services. If you're not planning on using these features, feel free to skip setting them up.
Register new GitHub app and set
Once you have obtained your client ID and secret, add them to your .env file and run direnv allow .env.
GITHUB_CLIENT_ID=""
GITHUB_CLIENT_SECRET=""
GITHUB_APP_HANDLE=""
GITHUB_APP_ID=""
GITHUB_WEBHOOK_SECRET=""
GITHUB_PRIVATE_KEY=""
Create new Stripe account to obtain your secrets and add them to your .env file.
STRIPE_PUBLISHABLE_KEY=""
STRIPE_SECRET_KEY=""
STRIPE_WEBHOOK_SECRET=""
To host static assets, set up a public bucket on your preferred S3-compatible storage service and add the following credentials to your .env file:
AWS_ENDPOINT_URL_S3=""
AWS_REGION=""
AWS_ACCESS_KEY_ID=""
AWS_SECRET_ACCESS_KEY=""
BUCKET_NAME=""
To receive webhooks from GitHub or Stripe on your local machine, you'll need a way to expose your local server to the internet. The easiest way is to use a service like Cloudflare Tunnel or ngrok.
If you'd like to utilize our Cloudflare Tunnel GenServer to automatically run a tunnel when you start the app, you'll need to set up a named tunnel on your own domain:
cloudflared tunnel login
cloudflared tunnel create local
cloudflared tunnel route dns local http://local.yourdomain.com
And then add it to your .env file:
CLOUDFLARE_TUNNEL="local"
If you're using another service, make sure to start the tunnel manually in another terminal.
Elixir
96.2%
TypeScript
1.6%
HTML
1.1%