Show
Ignore:
Timestamp:
03/02/10 06:11:11 (2 years ago)
Author:
cmoullet
Message:

Continue migrating to Debian

Files:
1 modified

Legend:

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

    r3379 r3381  
    1414To create a MapFish application use:: 
    1515 
    16     <env> C:\MapFish> 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> C:\MapFish>cd MapFishApp 
    34     <env> C:\MapFish\MapFishApp>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> C:\MapFish\MapFishApp>cd .. 
    62     <env> C:\MapFish> 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> C:\MapFish>cd MapFishApp 
    71     <env> C:\MapFish\MapFishApp>paster serve --reload development.ini 
     70    <env> cd MapFishApp 
     71    <env> paster serve --reload development.ini 
    7272 
    7373.. note::