Skip to content

Commit

Permalink
bug #3559 Remove reference to copying parameters.yml from Git cookboo…
Browse files Browse the repository at this point in the history
…k (pwaring)

This PR was submitted for the master branch but it was merged into the 2.3 branch instead (closes #3559).

Discussion
----------

Remove reference to copying parameters.yml from Git cookbook

This file is included in standard distribution so no longer needs to be copied.

Commits
-------

b392af5 Remove reference to copying parameters.yml to parameters.yml.dist as this file is now included in standard distribution, and renumber all following steps.
  • Loading branch information
weaverryan committed Feb 18, 2014
2 parents 0029408 + 8c6e205 commit a21fb26
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions cookbook/workflow/new_project_git.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a21fb26

Please sign in to comment.