Go to file
Mark McLoughlin e23effda88 Import copies of the required openstack.common modules
The APIs melange is using are "incubating" in openstack-common. See:

  http://wiki.openstack.org/CommonLibrary#Incubation

A config file is included for openstack-common's copy-and-paste script
to make it easy to update the code e.g.

  $> git clone .../melange
  $> git clone .../openstack-common
  $> cd openstack-common
  $> python update.py ../melange/

Note: the copies of the openstack.common modules should never be directly
modified, instead you should always make the modifications in openstack-common
and copy them across using the script.

Change-Id: I0245e30e4b4a9a2214c4f8a291b7f2caa54ab97e
2012-01-26 16:09:09 +00:00
bin Declare the melange namespace 2012-01-23 09:26:34 -06:00
doc fixes bug 921698 by specifying network_owner_tenant_id 2012-01-25 23:17:25 +05:30
etc/melange fixes bug 919158 , default ip blocks are now optional 2012-01-23 11:39:20 +05:30
melange Import copies of the required openstack.common modules 2012-01-26 16:09:09 +00:00
tools Import copies of the required openstack.common modules 2012-01-26 16:09:09 +00:00
.gitignore Rename .melange-venv to .venv. 2011-12-05 13:11:57 -08:00
.gitreview Add .gitreview file to support the git-review tool. 2011-11-30 13:29:03 -08:00
.mailmap Rename .melange-venv to .venv. 2011-12-05 13:11:57 -08:00
Authors Rename .melange-venv to .venv. 2011-12-05 13:11:57 -08:00
builddeb.sh update copyrights 2010-07-15 01:28:51 -04:00
HACKING Import copies of the required openstack.common modules 2012-01-26 16:09:09 +00:00
LICENSE initial commit 2010-05-27 23:05:26 -07:00
MANIFEST.in remove more nova references 2011-11-01 18:11:11 -05:00
openstack-common.conf Import copies of the required openstack.common modules 2012-01-26 16:09:09 +00:00
pylintrc remove more nova references 2011-11-01 18:11:11 -05:00
README Adding pip install instructions to readme. 2012-01-20 16:48:57 -06:00
run_tests.py de-nova the test runner 2011-11-01 12:56:44 -05:00
run_tests.sh Rename .melange-venv to .venv. 2011-12-05 13:11:57 -08:00
setup.cfg remove more nova references 2011-11-01 18:11:11 -05:00
setup.py Import copies of the required openstack.common modules 2012-01-26 16:09:09 +00:00

# Running Melange App
>cd <melange_root>
>sudo pip install -r tools/pip-requires
>cp etc/melange/melange.conf.sample  ~/melange.conf
>bin/melange-manage db_sync
>bin/melange
By default melange uses sqlite, to use Mysql
1) Create the mysql db manually
   Eg: mysql -uroot -p -e "CREATE DATABASE melange_test;CREATE DATABASE melange"
2) Change sql_connection key in melange.conf to point to that db.
   Eg: sql_connection = mysql://<user>:<password>@localhost/melange