Switch to unified view

a/README.markdown b/README.markdown
...
...
64
64
65
If you want to use RabbitMQ for faster message processing (optional), also pip install 'amqplib' and 'kombu'.
65
If you want to use RabbitMQ for faster message processing (optional), also pip install 'amqplib' and 'kombu'.
66
66
67
And now to setup each of the Forge applications for development.  Because there are quite a few (at last count 15), we'll use a simple shell loop to set them up.
67
And now to setup each of the Forge applications for development.  Because there are quite a few (at last count 15), we'll use a simple shell loop to set them up.
68
68
69
    for APP in Allura* Forge* NoWarnings pyforge
69
    for APP in Allura* Forge* NoWarnings
70
    do
70
    do
71
        pushd $APP
71
        pushd $APP
72
        python setup.py develop
72
        python setup.py develop
73
        popd
73
        popd
74
    done
74
    done