FAQ for developers

From diaspora* project wiki

We've started adding questions that we see a lot to this page, but it doesn't cover everything. If you have other questions, the best way to get an answer quickly is to visit us in IRC (Internet Relay Chat). IRC is a large decentralized chat network that predates the World Wide Web. The bulk of the first wave of open source software (read: Linux) was developed using IRC as a communication channel. This continues to be the case today.

If you are new to open source development, IRC works like subscription services such as Campfire and Slack, which are like fancy front ends for IRC. Links to IRC channels and mailing lists are at the bottom of this page.

How do I get the latest source?

Pull the latest from github.

   git pull

Install any updates to gems:

   bin/bundle install --full-index

How do I reset the database to a totally clean state?

   bin/rake db:drop db:create db:migrate

How do I get debug information?

You can use the command

   tail -f log/development.log

to watch the log in development mode.

How do I add services for a user?

First enable the services in config/diaspora.yml. Then use the rails console:

   bin/rails c
   irb(main):001:0> User.where(username: "YOURUSERNAME").first.services << Service.initialize_from_omniauth({"provider" => "SERVICETOENABLE", "uid" => 2, "info" => {"nickname" => "NICKNAME"}, "credentials" => {"token" => "token", "secret" => "not_so_much"}})

where YOURUSERNAME is your diaspora* username (not the complete handle), SERVICETOENABLE is facebook, tumblr, twitter or wordpress and NICKNAME is a nickname you want to have for that service.

I have found an issue with federation, how can I debug it?

We actually provide a special configuration for testing server-to-server communication, which produces logs that contain only the events around federation. It involves spinning up two Diaspora* instances which you can use to recreate realistic circumstances and the logs of both sides are recorded into a single file. See Federation Logger

What tools will I need to do development?

You can write Ruby, JavaScript and template/styling markup with any editor, just use your favourite one that works best for you.

For developers who have contributed to a diaspora* project owned repository with at least two successfully merged pull requests, you can request an open source project license for RubyMine courtesy of JetBrains. Send your request for the license key - make sure to include details so that your contributions can be verified from commits. The license is valid for a year at a time.

If you use RubyMine, make sure to install the RuboCop plugin which will help you a lot to get the code styling right before pushing as a pull request.

If your are using Emacs, you can install rubocop-mode and flycheck for the same functionality.

Styleguides

Please keep in mind that the codebase hasn't been ported to the new style guide. So if you touch some older code while contributing, please make sure to bring it in check with our style guides.

You can find out more about the style guides here and on Discourse.

What if my question isn't answered here?

Wiki

Check other wiki pages in Category:Developers, particularly those listed on the Main Page under Developers.

IRC Channel

IRC is the best way to get an answer quickly. Click the link to the join the channel in a new browser window. You can also download and use an IRC client such as Colloquy for OS X, XChat for GNU/Linux or mIRC for Windows.

Join us at #diaspora on irc.libera.chat.

Discourse

We have a Discourse instance. It has a slightly different audience than the IRC channels, so if you can't get your question answered in IRC, you can try here. There is a developer support category.

FAQ for web developers

If you're developing an external web site, and would like to know about adding diaspora related features to your site, you might want to look at the FAQ for web developers.