summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2014-05-05 16:47:21 +0200
committerAzul <azul@riseup.net>2014-05-05 16:47:21 +0200
commit7866a41898cb2482cc0722b0b308779727482274 (patch)
tree65f0a90953059ef558998e1b01852bf8d35a831c
parent490c073f39d6a03d945e9c1c0257cbee3e7cec53 (diff)
remove bash hints from code blocks
-rw-r--r--docs/design/webapp.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/design/webapp.md b/docs/design/webapp.md
index 16fbd56..e98f101 100644
--- a/docs/design/webapp.md
+++ b/docs/design/webapp.md
@@ -232,7 +232,7 @@ After securing the couch design documents need to be deployed with admin permiss
The before_script block in .travis.yml illustrates how to do this:
-```bash
+```
mv test/config/couchdb.yml.admin config/couchdb.yml # use admin privileges
bundle exec rake couchrest:migrate_with_proxies # run the migrations
bundle exec rake couchrest:migrate_with_proxies # looks like this needs to run twice
@@ -243,7 +243,7 @@ mv test/config/couchdb.yml.user config/couchdb.yml # drop admin privileges
First of all we get the design docs as files:
-```bash
+```
# put design docs in /tmp/design
bundle exec rake couchrest:dump
```