Jim,
I suspect I am still failing. I was eventually able to run setup_node.py, but I was not prompted for anything about oauth or node signing, and I got lots of messages like this:
(<class 'couchapp.errors.Unauthorized'>, Unauthorized(Unauthorized(),), <traceba
ck object at 0x1428290>)
WARNING:Unable to push CouchApp at '/home/learnreg/LearningRegistry/config/../co
uchdb/resource_data/apps/learningregistry-resource-location'
My steps were as follows:
login as <my account>
su learnreg
cd ~
pushd LearningRegistry
git checkout -b master origin/master
says "fatal: A branch named 'master' already exists."
git branch shows that two existing branches are autosign and master
git checkout -B master origin/master (maybe will overwrite current content of master)
error: Your local changes to the following files would be overwritten by checkout:
LR/LR.egg-info/SOURCES.txt
LR/LR.egg-info/requires.txt
Please, commit your changes or stash them before you can switch branches.
Aborting
git commit -a -m "customized per instructions"
seems to have worked
git checkout -B master origin/master (maybe will overwrite current content of master)
Branch master set up to track remote branch master from origin.
Switched to and reset branch 'master'
git pull --rebase origin/master
fatal: 'origin/master' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
git pull --rebase git://
github.com/jimklo/LearningRegistry From git://
github.com/jimklo/LearningRegistry * branch HEAD -> FETCH_HEAD
Current branch master is up to date.
popd
. env/bin/activate
changes prompt
pip uninstall LR
Cannot uninstall requirement LR, not installed
Storing complete log in /home/learnreg/.pip/pip.log
pip install -e ./LearningRegistry/LR/
downloads files, throws some warnings, does some gcc work, ends by saying
Successfully installed WebOb Pylons pyparsing restkit couchdb lxml iso8601plus i
json pystache PyJWT Couchapp LR Routes WebHelpers Beaker Paste PasteDeploy Paste
Script FormEncode simplejson decorator nose Mako WebError WebTest Tempita repoze
.lru MarkupSafe Pygments
Cleaning up...
cd /home/learnreg/LearningRegistry/config
python ./setup_node.py
As you can see I departed from your specific instructions because I couldn't figure out how to get them to work.
Suggestions?
thanks!
Martin