5308c2cc52
We don't support postgres. Change-Id: Ia51300c1aa1042ae32f966490ce4265d49fab255
1.2 KiB
1.2 KiB
Installing Manually
Installing the API service
At the command line:
$ pip install storyboard
Or, if you have virtualenvwrapper installed:
$ mkvirtualenv storyboard $ pip install storyboard
By default Storyboard will use SQLite driver which is suitable only for development mode. Storyboard only supports MySQL, to install MySQL driver execute:
$ pip install MySQL-python
Edit
/etc/storyboard/storyboard.conf
. You'll need to modifyconnection
parameter in the[database]
section.For MySQL it will look like:
connection = mysql://root:pass@127.0.0.1:3306/storyboard
Migrate database to current state:
$ storyboard-db-manage --config-file /etc/storyboard/storyboard.conf upgrade head
Launch API service:
$ storyboard-api --config-file /etc/storyboard/storyboard.conf
Note
Is is recommended to use Apache+mod_wsgi for production installation.
Installing the Web Client
Web Client is an all-javascript application. It doesn't require any software to run. Just grab a tarball from http://tarballs.openstack.org/storyboard-webclient, unpack it and serve as static files.