~ziad-sawalha/keystone/trunk

« back to all changes in this revision

Viewing changes to README.md

  • Committer: Brian Lamar
  • Date: 2011-05-24 15:36:52 UTC
  • mto: This revision was merged to the branch mainline in revision 103.
  • Revision ID: git-v1:6fdc83234f821a3b893c92ab496e6170818fefd2
-Removed .project file from project and added it to .gitignore
-Moved pylintrc -> .pylintrc, personal preference that this file should be available, but not seen
-Moved echo to examples directory, seemed a bit odd to be in the top level
-Moved management directory to tools, seemed a bit odd to be in the top level
-Moved pip-requires to tools/, and updated the reference to it in README.md

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
SERVICES:
13
13
---------
14
14
 
15
 
* Keystone    - authentication service
16
 
* Auth_Token  - WSGI middleware that can be used to handle token auth protocol (WSGI or remote proxy)
17
 
* Echo        - A sample service that responds by returning call details
 
15
* keystoned  - Authentication service
 
16
* AuthToken  - WSGI middleware that can be used to handle token auth protocol (WSGI or remote proxy)
 
17
* Echo       - A sample service that responds by returning call details
18
18
 
19
19
Also included:
20
20
 
48
48
 
49
49
DEPENDENCIES:
50
50
-------------
51
 
See pip-requires for dependency list. The list of dependencies should not add to what already is needed to run other OpenStack services.
 
51
See tools/pip-requires for dependency list. The list of dependencies should not add to what already is needed to run other OpenStack services.
52
52
 
53
53
Setup:
54
54
 
55
55
    # Install http://pypi.python.org/pypi/setuptools
56
56
    sudo easy_install pip
57
 
    sudo pip install -r pip-requires
 
57
    sudo pip install -r tools/pip-requires
58
58
 
59
59
 
60
60
RUNNING THE TEST SERVICE (Echo.py):