An application for multi-tenant domain services (registry, registrar, zone management, and more) built with Ruby on Rails, open source and forever free.
This powers the obl.ong
domain registry, which provides free, quality domains for all.
Built by Obl.ong, a membership-first nonprofit -- we encourage contributions!
-
Install Ruby 3.3.0
-
Install Ruby on Rails with Bundler
-
Install Bun for compiling tailwind (
curl -fsSL https://bun.sh/install | bash
) -
Pull submodules (
git submoudle init && git submodule update
) -
Compile tailwind (
rails css:build
) -
Generate active record encryption keys (
bin/rails db:encryption:init
) -
Run
rails credentials:edit
and add these keys:dnsimple: access_token: DNSIMPLE_ACCESS_TOKEN account_id: ACCOUNT_ID postmark_api_token: "POSTMARK_API_TOKEN" sentry: SENTRY_URI active_record_encryption: primary_key: PRIMARY_KEY deterministic_key: DETERMINISTIC_KEY key_derivation_salt: KEY_DERIVATION_SALT
Note: Sentry isn't required.
-
If you are building for production, run
rails assets:precompile
. Don't do this in development. -
Copy
app/javascript/application.js
topublic/assets/application-{hash}.js
(must be done every time assets is recompiled) -
Edit
config/application.rb
to reflect your environment. If you didn't provide a Sentry URI, please setconfig.sentry
to false. -
Start the server with
bin/rails server
We are working to integrate with Weblate to allow for translation submissions.