Go to file
Jason Kölker 01cb899ef7 Promote v1.0 to current
* Mark v0.1 as deprecated
* Add v1.0 to version list
* Use subclasses for wsgi Routers
* Add melange-manage route command to print routes
* Fixes certain routes not being exposed in the v1.0 api (LP947327)

Change-Id: Iac8294f2534decbbddf53230386fdbe8c622ff84
2012-03-05 15:48:46 -06:00
bin Promote v1.0 to current 2012-03-05 15:48:46 -06:00
doc Remove trailing whitespaces in regular file 2012-03-03 12:56:37 +08:00
etc/melange New APIs as per blueprint interface-api-cleanup 2012-02-15 05:49:31 +05:30
melange Promote v1.0 to current 2012-03-05 15:48:46 -06:00
tools Remove trailing whitespaces in regular file 2012-03-03 12:56:37 +08:00
.gitignore Fix namespace declaration 2012-02-09 13:49:18 -06: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 Remove trailing whitespaces in regular file 2012-03-03 12:56:37 +08: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 Add tox config for multi-python testing. 2012-02-07 10:07:03 -08:00
openstack-common.conf Update setup split from openstack-common. 2012-02-06 07:53:59 -08: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 fixes a pep8 error 2012-02-14 12:38:23 -06:00
setup.cfg Add tox config for multi-python testing. 2012-02-07 10:07:03 -08:00
setup.py Fix namespace declaration 2012-02-09 13:49:18 -06:00
tox.ini Add tox config for multi-python testing. 2012-02-25 11:23:15 -08: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