diff options
| author | Chris McDonough <chrism@plope.com> | 2012-03-14 15:04:56 -0700 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-03-14 15:04:56 -0700 |
| commit | 8fac09d9eff38b74db4afe5c007cdc8f9f9b8c31 (patch) | |
| tree | 5c1be20a112ddf0a94dd014b3c31ee59be5e61f6 /docs/tutorials/wiki2/installation.rst | |
| parent | 4d22adc0ea7a53158c1e7e5489cac8d63db80a06 (diff) | |
| parent | c884eea0abeac00fdff6821329c2981caa5c8db4 (diff) | |
| download | pyramid-8fac09d9eff38b74db4afe5c007cdc8f9f9b8c31.tar.gz pyramid-8fac09d9eff38b74db4afe5c007cdc8f9f9b8c31.tar.bz2 pyramid-8fac09d9eff38b74db4afe5c007cdc8f9f9b8c31.zip | |
Merge pull request #485 from ppaez/improve-docs
Improve docs
Diffstat (limited to 'docs/tutorials/wiki2/installation.rst')
| -rw-r--r-- | docs/tutorials/wiki2/installation.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst index e5d2a0b5b..ae1396c87 100644 --- a/docs/tutorials/wiki2/installation.rst +++ b/docs/tutorials/wiki2/installation.rst @@ -96,9 +96,9 @@ On Windows: Success executing this command will end with a line to the console something like:: - Please run the "populate_tutorial" script to set up the SQL + Please run the "initialize_tutorial_db" script to set up the SQL database before starting the application (e.g. - "$myvirtualenv/bin/populate_tutorial development.ini".) + "$myvirtualenv/bin/initialize_tutorial_db development.ini".) Installing the Project in "Development Mode" ============================================ @@ -242,8 +242,8 @@ If successful, you will see something like this on your console:: This means the server is ready to accept requests. -Populating the Database -======================= +Initializing the Database +========================= In a web browser, visit ``http://localhost:6543/``. @@ -255,9 +255,9 @@ You will see an error page with a title something like this:: Oh no! Something isn't working! -This happens because we haven't populated the SQL database with any table -information yet. We need to use the ``populate_tutorial`` :term:`console -script` to populate our database before we can see the page render correctly. +This happens because we haven't initialized the SQL database with any table +information yet. We need to use the ``initialize_tutorial_db`` :term:`console +script` to initialize our database before we can see the page render correctly. Stop the running Pyramid application by pressing ``ctrl-C`` in the console. Make sure you're still in the ``tutorial`` directory (the directory with a @@ -267,13 +267,13 @@ On UNIX: .. code-block:: text - $ ../bin/populate_tutorial development.ini + $ ../bin/initialize_tutorial_db development.ini On Windows: .. code-block:: text - c:\pyramidtut\tutorial> ..\Scripts\populate_tutorial development.ini + c:\pyramidtut\tutorial> ..\Scripts\initialize_tutorial_db development.ini The output to your console should be something like this:: |
