Skip to content

sks444/openhub-django

Repository files navigation

openhub-django

https://travis-ci.org/sks444/openhub-django.svg?branch=master

Integrate openhub APIs with Django

Documentation

The full documentation is at https://openhub-django.readthedocs.io.

Quickstart

  1. Install openhub-django:
pip install openhub-django
  1. Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
    ...
    'openhub_django.apps.OpenhubDjangoConfig',
    ...
)
  1. Add openhub-django's URL patterns:
urlpatterns = [
    ...
    url(r'^', include('openhub_django.urls')),
    ...
]
  1. Configure following environment variables:

    • OpenHub Token

      How to get OpenHub Token?

      1. Signup with GitHub on OpenHub
      2. Go to your profile settings to create a new API Key.
      3. Choose "API Keys" from the section and create a new one by clicking on button "Request New API Key"
      4. Fill in the required fields and Save it.
      5. Copy the API Key for the generated token to add it to your environment.

      Add it to your Linux (or Ubuntu) environment-

      1. Open the terminal and run cat ~/.bashrc.
      2. Find this peice of code
      if [ -f ~/.bash_aliases ]; then
           . ~/.bash_aliases
      fi
      1. In this case we will create a new file in $HOME directory named .bash_aliases to store our environment variables. As it will execute everytime we open a new terminal window.
      vi ~/.bash_aliases
      1. Enter into the insert mode and add the value of token that you generated from OpenHub settings.
      export OH_TOKEN=<PASTE THE COPIED API KEY OF TOKEN>
      1. Exit the insert mode by pressing esc key and the editor.
      2. Restart your terminal and run printenv to verify the API Key added.
    • Organization name

      Set the environment variable ORG_NAME following the above mentioned steps like you did adding the environment variable OH_TOKEN. Once you setup these two environment variables, you're ready to run a management command to fetch the organization related information from OpenHub.

  2. Run management command

python manage.py migrate

python manage.py import_openhub_data
  1. View the fetched data:
python manage.py runserver

# Open http://127.0.0.1:8000/openhub/ in browser

Features

  • Import all the organization portfolio projects data
  • Import all the organization outside projects data such as dependencies
  • Import all the affiliated committers data who made contributions to the projects
  • Import all the outside committers data
  • Import the organization related information
  • Generate the static web-pages of all the imported data with an interactive UI/UX design.

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published