~styluseater/swift/lp610583

« back to all changes in this revision

Viewing changes to doc/source/development_saio.rst

  • Committer: Tarmac
  • Author(s): John Dickinson
  • Date: 2010-07-19 01:56:51 UTC
  • mfrom: (20.1.1 saio_doc_fixes)
  • Revision ID: hudson@openstack.org-20100719015651-t5wp1se9nl0lt1i1
Tags: 1.0.0
Fixed typos on the saio doc page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
* As you on guest:
146
146
 
147
147
  #. `mkdir ~/bin`
148
 
  #. Create `~/.bazaar/.bazaar.conf`::
 
148
  #. Create `~/.bazaar/bazaar.conf`::
149
149
 
150
150
        [DEFAULT]
151
151
                email = Your Name <your-email-address>
153
153
     `bzr launchpad-login <launchpad_id>`
154
154
  #. Create the swift repo with `bzr init-repo swift`
155
155
  #. Check out your bzr branch of swift, for example:
156
 
     `cd ~/swift; bzr branch lp:swift`
157
 
  #. `cd ~/swift/swift; sudo python setup.py develop`
 
156
     `cd ~/swift; bzr branch lp:swift trunk`
 
157
  #. `cd ~/swift/trunk; sudo python setup.py develop`
158
158
  #. Edit `~/.bashrc` and add to the end::
159
159
 
160
160
        export PATH_TO_TEST_XFS=/mnt/sdb1/test
424
424
 
425
425
  #. `chmod +x ~/bin/*`
426
426
  #. `remakerings`
427
 
  #. `cd ~/swift; ./.unittests`
428
 
  #. `startmain`
 
427
  #. `cd ~/swift/trunk; ./.unittests`
 
428
  #. `startmain` (The ``Unable to increase file descriptor limit.  Running as non-root?`` warnings are expected and ok.)
429
429
  #. `swift-auth-create-account test tester testing`
430
430
  #. Get an `X-Storage-Url` and `X-Auth-Token`: ``curl -v -H 'X-Storage-User: test:tester' -H 'X-Storage-Pass: testing' http://127.0.0.1:11000/v1.0``
431
431
  #. Check that you can GET account: ``curl -v -H 'X-Auth-Token: <token-from-x-auth-token-above>' <url-from-x-storage-url-above>``
442
442
 
443
443
        collate = C
444
444
 
445
 
  #. `cd ~/swift; ./.functests`
446
 
  #. `cd ~/swift; ./.probetests`
 
445
  #. `cd ~/swift/trunk; ./.functests`
 
446
  #. `cd ~/swift/trunk; ./.probetests`
447
447
 
448
448
If you plan to work on documentation (and who doesn't?!):
449
449