From 8c6e2050373484ddd0c154815db7698cedae972a Mon Sep 17 00:00:00 2001 From: Paul Waring Date: Sat, 8 Feb 2014 19:44:58 +0000 Subject: [PATCH] Remove reference to copying parameters.yml to parameters.yml.dist as this file is now included in standard distribution, and renumber all following steps. --- cookbook/workflow/new_project_git.rst | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/cookbook/workflow/new_project_git.rst b/cookbook/workflow/new_project_git.rst index 598dc6e9554..f0403af21a1 100644 --- a/cookbook/workflow/new_project_git.rst +++ b/cookbook/workflow/new_project_git.rst @@ -44,31 +44,25 @@ git repository: in which case, you can find more information here: `Github .gitignore`_ This way you can exclude files/folders often used by your IDE for all of your projects. -4. Copy ``app/config/parameters.yml`` to ``app/config/parameters.yml.dist``. - The ``parameters.yml`` file is ignored by Git (see above) so that machine-specific - settings like database passwords aren't committed. By creating the ``parameters.yml.dist`` - file, new developers can quickly clone the project, copy this file to - ``parameters.yml``, customize it, and start developing. - -5. Initialize your Git repository: +4. Initialize your Git repository: .. code-block:: bash $ git init -6. Add all of the initial files to Git: +5. Add all of the initial files to Git: .. code-block:: bash $ git add . -7. Create an initial commit with your started project: +6. Create an initial commit with your started project: .. code-block:: bash $ git commit -m "Initial commit" -8. Finally, download all of the third-party vendor libraries by +7. Finally, download all of the third-party vendor libraries by executing Composer. For details, see :ref:`installation-updating-vendors`. At this point, you have a fully-functional Symfony2 project that's correctly