![Aaron Lee](/assets/img/avatar_default.png)
The last commit broke the initial migration(which is worse, because it was the only substantial migration). This commit keeps from setting up the DB before running migrations. If any future migrations need to read from the DB they will need to do the same dance that's in 002. Change-Id: Icedf99d95b538cb24cccccc4d47ef68bdf225b4c
# 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
Description
Languages
Python
98.4%
Shell
1.6%