The service catalog can be used to display information about available API:s in an organization.
This application uses the 1140 grid for layout by @andytlr: http://cssgrid.net/
Install Python 2.7 for you OS (http://www.python.org/)
Install pip:
$ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
$ python get-pip.py
Install Django 1.3:
$ pip install django
Get the source:
$ git clone https://peterk@github.com/peterk/service-catalog.git
Edit katana/settings.py and enter your database settings (default it uses Sqlite3 which you may have to install).
Create database tables and indexes:
$ cd katana
$ python manage.py syncdb
(create superuser when asked)
Start the application:
$ python manage.py runserver
Now you can open the admin interface in your browser: http://127.0.0.1:8000/admin
Application is available at http://127.0.0.1:8000/
BSD