FOR ARCHIVAL PURPOSES ONLY

The information in this wiki hasn't been maintained for a good while. Some of the projects described have since been deprecated.

In particular, the "Ushahidi Platform v3.x" section contains information that is often misleading. Many details about this version of Platform have changed since.

This website is an extraction of the original Ushahidi wiki into a static form. Because of that, functions like logging in, commenting or searching will not work.

For more documentation, please refer to https://docs.ushahidi.com

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

If you are a developer and are interested in contributing to the Ushahidi code base, do visit our repository on GitHub: https://github.com/ushahidi/Ushahidi_Web

There are a number of ways of getting the code from GitHub:

  1. Download the last tagged version or the current development branch. This is available as both a tarball (.tgz) and zip archive.
  2. Use Git to install a clone of the main source code and run updates to keep your installation in sync with the main development branch
  3. Fork the repository on GitHub. This will give you the opportunity to request for your contributions be merged into the development branch. GitHub's pull requests feature facilitates this.

Cloning the source code

Cloning the source code installs a copy of the repository on your server. It always requires that you have git installed. See the Setting up the Development Environment for instructions on how to do this. To clone the current source code, log in to your development server and run the following commands:

Code Block
$ git clone git://github.com/ushahidi/Ushahidi_Web.git
$ git pull origin

To keep the source code updated as the project progresses, run the following command:

Code Block
$ git pull origin

Forking the Repository

This option requires that you have an account on GitHub. If you do not have one, you can sign up for a free account here: https://github.com/signup/free
Forking the repository allows you to contribute, commit your changes and thereafter request for your changes to be merged into the development branch thanks to GitHub's pull requests feature. If you are planning to do any custom development forking is HIGHLY RECOMMENDED.