Show
Ignore:
Timestamp:
03/05/10 11:55:17 (2 years ago)
Author:
bbinet
Message:

small updates for mapfish workshop (mainly typo)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandbox/camptocamp/mapfish_workshop_fossgis2010/printing_src/_build/html/_sources/creating_application.txt

    r3381 r3396  
    1414To create a MapFish application use:: 
    1515 
    16     <env> paster create -t mapfish MapFishApp 
     16    (env) $ paster create -t mapfish MapFishApp 
    1717 
    1818``MapFishApp`` is the name of the MapFish application you're creating, you can 
     
    3131the ``MapFishApp`` folder and start the application:: 
    3232 
    33     <env> $ cd MapFishApp 
    34     <env> $ paster serve development.ini 
     33    (env) $ cd MapFishApp 
     34    (env) $ paster serve development.ini 
    3535 
    3636This command starts your application in the Paster web server, which is a 
     
    5959commands:: 
    6060 
    61     <env> cd .. 
    62     <env> paster create -t mapfish_client MapFishApp 
     61    (env) $ cd .. 
     62    (env) $ paster create -t mapfish_client MapFishApp 
    6363 
    6464When asked whether to overwrite ``index.html`` answer ``y``. This will 
     
    6868Start the application again:: 
    6969 
    70     <env> cd MapFishApp 
    71     <env> paster serve --reload development.ini 
     70    (env) $ cd MapFishApp 
     71    (env) $ paster serve --reload development.ini 
    7272 
    7373.. note::