forked from npm/npm-registry-couchapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpush.sh
executable file
·71 lines (58 loc) · 1.65 KB
/
push.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
c=${npm_package_config_couch}
if [ "$c" == "" ]; then
cat >&2 <<-ERR
Please set a valid 'npmjs.org:couch' npm config.
You can put PASSWORD in the setting somewhere to
have it prompt you for a password each time, so
it doesn't get dropped in your config file.
If you have PASSWORD in there, it'll also be read
from the PASSWORD environment variable, so you
can set it in the env and not have to enter it
each time.
ERR
exit 1
fi
case $c in
*PASSWORD*)
if [ "$PASSWORD" == "" ]; then
echo -n "Password: "
read -s PASSWORD
fi
;;
*);;
esac
# echo "couch=$c"
scratch_message () {
cat <<-EOF
Pushed to scratch ddoc. To make it real, use a COPY request.
Something like this:
curl -u "\$username:\$password" \\
\$couch/registry/_design/scratch \\
-X COPY \\
-H destination:'_design/app?rev=\$rev'
But, before you do that, make sure to fetch the views and give
them time to load, so that real users don't feel the pain of
view generation latency.
You can do it like this using npm:
npm run load
# Go get lunch and come back.
# Go take the dog for a walk, and play some frisbee in the park.
# If you don't have a dog, go get a puppy, provide it with love
# and appropriate discipline until it gets older, train it to play
# frisbee in the park, and then take it to the park and play frisbee.
# Wait some more. It's probably almost done now.
# Make it live:
npm run copy
EOF
}
c=${c/PASSWORD/$PASSWORD}
c=${c// /%20}
which couchapp
couchapp push registry/shadow.js "$c" && \
couchapp push registry/app.js "$c" && \
scratch_message && \
exit 0 || \
( ret=$?
echo "Failed with code $ret"
exit $ret )