This is the repository of the official diaspora* project site hosted on diasporafoundation.org.
If you want to contribute, you may need to install this application on your development machine. This is a very basic installation guide, assuming you know Rails.
- Install Ruby 2.1. It doesn't matter if you're using RVM, rbenv or anything else.
- Check out the source with
git clone https://github.com/diaspora/diaspora-project-site.git
andcd
into it. - Install the bundler gem:
gem install bundler
. - Install all the dependencies:
bundle install
. - Copy
config/database.yml.example
toconfig/database.yml
and add your database credentials. - Create your database and the required tables with
rake db:setup
. - Start the unicorns with
bundle exec unicorn
.