-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Added a mention to the Symfony Demo application #5355
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 </contributing/community/releases>` | ||
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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Application There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. Thanks. |
||
--------------------------------------- | ||
|
||
The Symfony Demo application is a fully-functional application that shows in | ||
practice the recommended way to develop Symfony applications. The application | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "in practice" feels a bit odd in this sentence. Maybe move it to the end of the sentence? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are right. What if we remove "in practice" entirely? It feels redundant. |
||
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 | ||
--------------------------------- | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this anchor should be moved to the below section
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!