diff options
author | Ian Bicking <ian@ianbicking.org> | 2005-09-30 23:15:08 +0000 |
---|---|---|
committer | Ian Bicking <ian@ianbicking.org> | 2005-09-30 23:15:08 +0000 |
commit | 207f8d42b9e1357b5bb82c87f1f5d9360c0861d8 (patch) | |
tree | 29ac2ba507451768f5cf53f8ab93151b631df29e /docs/install-example.txt | |
parent | 079bbce9a60efe5c58e4a4406971acf36319e22e (diff) | |
download | paste-git-mainline-refactor.tar.gz |
Changed front page, with different entry points and documentationmainline-refactor
Diffstat (limited to 'docs/install-example.txt')
-rw-r--r-- | docs/install-example.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/install-example.txt b/docs/install-example.txt new file mode 100644 index 0000000..4024f0d --- /dev/null +++ b/docs/install-example.txt @@ -0,0 +1,33 @@ +Paste Installation +++++++++++++++++++ + +Installation of Paste-enabled applications is consistent and reliable; +you don't have to understand what technologies those applications +used. Paste-enabled applications are installable with `easy_install +<>`_, like:: + + $ easy_install FileBrowser + ... messages ... + +Once an application is installed, you can set up an instance of that +application with ``paste deploy``:: + + $ paste deploy FileBrowser location + ... @@: make this work ;) ... + +This just wrote to ``location/filebrowser.ini`` -- you can configure +the application there, with whatever specifics that application needs. +Then you can integrate it into your website and other applications, +with a file like:: + + [composit:main] + use = egg:Paste#urlmap + /browser = config:filebrowser.ini + +You can attach applications to many locations using this. Once you've +set that file up with your local settings and preferences, you can +run:: + + $ paster serve location/apps.ini --daemon + +And it will be running in the background. |