view backend/couchdb/CouchApp/feedworm/setup.sh @ 166:04c3b9796b89

feedparser uses the proxy now if one is configured. To implement this the FeedUpdater had to change a bit - sqlalchemy backend is not yet refactored.
author dirk
date Sat, 03 Sep 2011 04:12:35 +0200
parents a5bda54309ba
children 98eaf0075a44
line wrap: on
line source

#!/bin/bash


BASE_URL=${1:-http://localhost:5984}
DB_URL=${BASE_URL}/feedworm

# create the database if it doesn't yet exist
curl -f "${DB_URL}" > /dev/null 2>&1
if [ $? -gt 0 ]; then
    echo -n "creating the database ... "
    curl -X PUT ${DB_URL}
fi

couchapp push local