1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-16 07:08:55 +00:00

Enable to create seahub database

This commit is contained in:
xiez
2012-03-23 14:09:06 +08:00
parent c5bb23c11e
commit b823080618
2 changed files with 19 additions and 6 deletions

View File

@@ -9,8 +9,11 @@ export PYTHONPATH=/usr/lib/python2.6/site-packages:thirdpart
# The database configuration. Change to your config
export DBNAME='seahub-meta'
export DBUSER='root'
export DBPASSWD='test'
export DBUSER='seafile-user'
export DBPASSWD='seafile'
# Save sqlite settings
cp settings.py setting.py.sqlite
# Delete the exist seahub tables in database
python batch-delete.py
@@ -34,4 +37,9 @@ sed -i "/DATABASE_PASSWORD/c\DATABASE_PASSWORD = '$DBPASSWD'" $SETTINGS_COPY
./manage.py dumpdata --format=xml > $DUMP_FILE --settings=settings && ./manage.py loaddata $DUMP_FILE --settings=$SETTINGS_MODULE && echo '[DONE]' || echo '[FAILED]'
#rm $DUMP_FILE $SETTINGS_COPY 2> /dev/null
# Save mysql settings, and use it as curernt settings
cp $SETTINGS_COPY settings.py.mysql
cp $SETTINGS_COPY settings.py
# Remove temp file
rm $DUMP_FILE $SETTINGS_COPY 2> /dev/null