annotate backend/couchdb/CouchApp/feedworm/setup.sh @ 241:e0e7459556bc

use Qt to open the selected article in the system browser
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 28 Apr 2015 02:50:57 +0200
parents 98eaf0075a44
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
1 #!/bin/bash
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
2
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
3 BASE_URL=${1:-http://localhost:5984}
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
4 DB_URL=${BASE_URL}/feedworm
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
5
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
6 # create the database if it doesn't yet exist
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
7 curl -f "${DB_URL}" > /dev/null 2>&1
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
8 if [ $? -gt 0 ]; then
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
9 echo -n "creating the database ... "
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
10 curl -X PUT ${DB_URL}
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
11 fi
a5bda54309ba add a couchapp for easy/automated setup
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
12
177
98eaf0075a44 make setup.sh work with non-local coucdhb URLs
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 165
diff changeset
13 couchapp push ${DB_URL}