From b3a644a3aad85d6cb37f653d4794af30ca903228 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 4 Jun 2015 10:27:45 +0200 Subject: [PATCH 1/3] Added a mention to the Symfony Demo application --- book/installation.rst | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/book/installation.rst b/book/installation.rst index 4098b6f080c..3086daa83b2 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -110,7 +110,7 @@ pass ``lts`` as the second argument of the ``new`` command: $ symfony new my_project_name lts # Windows - c:\projects\> php symfony.phar new my_project_name lts + c:\projects\> php symfony new my_project_name lts Read the :doc:`Symfony Release process ` to better understand why there are several Symfony versions and which one @@ -304,6 +304,30 @@ several minutes to complete. .. _installing-a-symfony2-distribution: +Installing the Symfony Demo application +--------------------------------------- + +The Symfony Demo application is a fully-functional application that shows in +practice the recommended way to develop Symfony applications. The application +has been conceived as a learning tool for Symfony newcomers and its source code +contains tons of comments and helpful notes. + +In order to download the Symfony Demo application, execute the ``demo`` command +of the Symfony Installer anywhere in your system: + +.. code-block:: bash + + # Linux, Mac OS X + $ symfony demo + + # Windows + c:\projects\> php symfony demo + +Once downloaded, enter into the ``symfony_demo/`` directory and run the PHP's +built-in web server executing the ``php app/console server:run`` command. Access +to the ``http://localhost:8000`` URL in your browser to start using the Symfony +Demo application. + Installing a Symfony Distribution --------------------------------- From d9f20c2854ebbc09337aa209b3faf0d6815289ba Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Fri, 5 Jun 2015 08:30:14 +0200 Subject: [PATCH 2/3] Fixed minor issue with the title case --- book/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/installation.rst b/book/installation.rst index 3086daa83b2..d8bfb46a632 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -304,7 +304,7 @@ several minutes to complete. .. _installing-a-symfony2-distribution: -Installing the Symfony Demo application +Installing the Symfony Demo Application --------------------------------------- The Symfony Demo application is a fully-functional application that shows in From 5482fda92b63e983be3affd27ccc21b9d8edd436 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Sat, 6 Jun 2015 20:51:08 +0200 Subject: [PATCH 3/3] Fixed some issues reported by Wouter --- book/installation.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/book/installation.rst b/book/installation.rst index d8bfb46a632..37e89431904 100644 --- a/book/installation.rst +++ b/book/installation.rst @@ -302,15 +302,13 @@ them all at once: Depending on the complexity of your project, this update process can take up to several minutes to complete. -.. _installing-a-symfony2-distribution: - Installing the Symfony Demo Application --------------------------------------- -The Symfony Demo application is a fully-functional application that shows in -practice the recommended way to develop Symfony applications. The application -has been conceived as a learning tool for Symfony newcomers and its source code -contains tons of comments and helpful notes. +The Symfony Demo application is a fully-functional application that shows the +recommended way to develop Symfony applications. The application has been +conceived as a learning tool for Symfony newcomers and its source code contains +tons of comments and helpful notes. In order to download the Symfony Demo application, execute the ``demo`` command of the Symfony Installer anywhere in your system: @@ -328,6 +326,8 @@ built-in web server executing the ``php app/console server:run`` command. Access to the ``http://localhost:8000`` URL in your browser to start using the Symfony Demo application. +.. _installing-a-symfony2-distribution: + Installing a Symfony Distribution ---------------------------------