Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
172 ashish 1
This file is for you to describe the Wiki-20 application. Typically
2
you would include information such as the information below:
3
 
4
Installation and Setup
5
======================
6
 
7
Install ``Wiki-20`` using the setup.py script::
8
 
9
    $ cd Wiki-20
10
    $ python setup.py install
11
 
12
Create the project database for any model classes defined::
13
 
14
    $ paster setup-app development.ini
15
 
16
Start the paste http server::
17
 
18
    $ paster serve development.ini
19
 
20
While developing you may want the server to reload after changes in package files (or its dependencies) are saved. This can be achieved easily by adding the --reload option::
21
 
22
    $ paster serve --reload development.ini
23
 
24
Then you are ready to go.