Changeset 3396 for sandbox/camptocamp/mapfish_workshop_fossgis2010/printing_src/_build/html/_sources/creating_application.txt
- Timestamp:
- 03/05/10 11:55:17 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
sandbox/camptocamp/mapfish_workshop_fossgis2010/printing_src/_build/html/_sources/creating_application.txt
r3381 r3396 14 14 To create a MapFish application use:: 15 15 16 <env>paster create -t mapfish MapFishApp16 (env) $ paster create -t mapfish MapFishApp 17 17 18 18 ``MapFishApp`` is the name of the MapFish application you're creating, you can … … 31 31 the ``MapFishApp`` folder and start the application:: 32 32 33 <env>$ cd MapFishApp34 <env>$ paster serve development.ini33 (env) $ cd MapFishApp 34 (env) $ paster serve development.ini 35 35 36 36 This command starts your application in the Paster web server, which is a … … 59 59 commands:: 60 60 61 <env>cd ..62 <env>paster create -t mapfish_client MapFishApp61 (env) $ cd .. 62 (env) $ paster create -t mapfish_client MapFishApp 63 63 64 64 When asked whether to overwrite ``index.html`` answer ``y``. This will … … 68 68 Start the application again:: 69 69 70 <env>cd MapFishApp71 <env>paster serve --reload development.ini70 (env) $ cd MapFishApp 71 (env) $ paster serve --reload development.ini 72 72 73 73 .. note::
