Mercurial > hg > Feedworm
view backend/couchdb/CouchApp/feedworm/setup.sh @ 167:a3c945ce434c
adjust the sqlalchemy backend to the changes in AbstractFeedUpdater
author | dirk |
---|---|
date | Mon, 05 Sep 2011 19:39:08 +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